Interface Boolean2BooleanBiConsumer
- All Superinterfaces:
BiConsumer<Boolean,Boolean>
- 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 boolean parameters.-
Method Summary
Modifier and TypeMethodDescriptiondefault voidDeprecated.voidacceptBoolean(boolean left, boolean right) Performs this operation on the given arguments.default BiConsumer<Boolean,Boolean> andThen(BiConsumer<? super Boolean, ? super Boolean> after) Deprecated.default Boolean2BooleanBiConsumer
-
Method Details
-
acceptBoolean
void acceptBoolean(boolean left, boolean right) Performs this operation on the given arguments.- Parameters:
left- the first input argumentright- the second input argument
-
accept
Deprecated.- Specified by:
acceptin interfaceBiConsumer<Boolean,Boolean>
-
andThenBoolean
- Parameters:
after- the operation to perform after this operation- Returns:
- a composed
Boolean2BooleanBiConsumerthat performs in sequence this operation followed by theafteroperation
-
andThen
@Deprecated default BiConsumer<Boolean,Boolean> andThen(BiConsumer<? super Boolean, ? super Boolean> after) Deprecated.- Specified by:
andThenin interfaceBiConsumer<Boolean,Boolean>
-