Interface Byte2ByteBiConsumer
- All Superinterfaces:
BiConsumer<Byte,Byte>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
A functional interface for a
BiConsumer with two primitive byte parameters.-
Method Summary
Modifier and TypeMethodDescriptiondefault voidDeprecated.voidacceptByte(byte left, byte right) Performs this operation on the given arguments.default BiConsumer<Byte,Byte> andThen(BiConsumer<? super Byte, ? super Byte> after) Deprecated.default Byte2ByteBiConsumerandThenByte(Byte2ByteBiConsumer after)
-
Method Details
-
acceptByte
void acceptByte(byte left, byte right) Performs this operation on the given arguments.- Parameters:
left- the first input argumentright- the second input argument
-
accept
Deprecated.- Specified by:
acceptin interfaceBiConsumer<Byte,Byte>
-
andThenByte
- Parameters:
after- the operation to perform after this operation- Returns:
- a composed
Byte2ByteBiConsumerthat performs in sequence this operation followed by theafteroperation
-
andThen
Deprecated.- Specified by:
andThenin interfaceBiConsumer<Byte,Byte>
-