@FunctionalInterface public interface BooleanConsumer
Boolean
-valued argument and returns no result. This is the
primitive type specialization of Consumer
for Boolean
. Unlike most other functional
interfaces, BooleanConsumer
is expected to operate via side-effects.
This is a functional interface whose functional method is
accept(Boolean)
.
Consumer
Modifier and Type | Method and Description |
---|---|
void |
accept(Boolean value)
Performs 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 operationBooleanConsumer
that performs in sequence this operation followed by the after
operationNullPointerException
- if after
is nullCopyright © 2020. All rights reserved.