public interface ByteConsumer
This is simply missing in the standard library,
but basically the same as IntConsumer
,
only for byte
values.
Modifier and Type | Method and Description |
---|---|
void |
accept(byte value)
Perform this operation on the given argument.
|
default ByteConsumer |
andThen(ByteConsumer after)
Returns a composed
IntConsumer that performs, in sequence, this
operation followed by the after operation. |
void accept(byte value)
value
- the input argument@NotNull default ByteConsumer andThen(@NotNull ByteConsumer after)
IntConsumer
that performs, in sequence, this
operation followed by the after
operation. If performing either
operation throws an exception, it is relayed to the caller of the
composed operation. If performing this operation throws an exception,
the after
operation will not be performed.after
- the operation to perform after this operationIntConsumer
that performs in sequence this
operation followed by the after
operationjava.lang.NullPointerException
- if after
is null