public interface BooleanConsumer
This is simply missing in the standard library,
but basically the same as IntConsumer
,
only for boolean
values.
Modifier and Type | Method and Description |
---|---|
void |
accept(boolean value)
Perform this operation on the given argument.
|
default BooleanConsumer |
andThen(BooleanConsumer after)
Returns a composed
BooleanConsumer that performs, in sequence, this
operation followed by the after operation. |
void accept(boolean value)
value
- the input argument@NotNull default BooleanConsumer andThen(@NotNull BooleanConsumer after)
BooleanConsumer
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