Class CollectByteProcedure<T>
- java.lang.Object
-
- org.eclipse.collections.impl.block.procedure.primitive.CollectByteProcedure<T>
-
- All Implemented Interfaces:
java.io.Serializable
,java.util.function.Consumer<T>
,Procedure<T>
public final class CollectByteProcedure<T> extends java.lang.Object implements Procedure<T>
Applies a ByteFunction to an object and adds the result to a target byte collection. This file was automatically generated from template file CollectPrimitiveProcedure.stg.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private MutableByteCollection
byteCollection
private ByteFunction<? super T>
byteFunction
private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description CollectByteProcedure(ByteFunction<? super T> byteFunction, MutableByteCollection targetCollection)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description MutableByteCollection
getByteCollection()
void
value(T object)
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
byteFunction
private final ByteFunction<? super T> byteFunction
-
byteCollection
private final MutableByteCollection byteCollection
-
-
Constructor Detail
-
CollectByteProcedure
public CollectByteProcedure(ByteFunction<? super T> byteFunction, MutableByteCollection targetCollection)
-
-
Method Detail
-
getByteCollection
public MutableByteCollection getByteCollection()
-
-