Interface Obj2BoolBiConsumer<V>
- Type Parameters:
V- the type of the object argument to the operation
- All Superinterfaces:
BiConsumer<V,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
BiConsumer specialized for boolean values.-
Method Summary
Modifier and TypeMethodDescriptiondefault voidDeprecated.voidacceptBool(V left, boolean right) Performs this operation on the given arguments.default BiConsumer<V,Boolean> andThen(BiConsumer<? super V, ? super Boolean> after) Deprecated.default Obj2BoolBiConsumer<V>andThenBool(Obj2BoolBiConsumer<V> after)
-
Method Details
-
acceptBool
Performs this operation on the given arguments.- Parameters:
left- the first input argumentright- the second input argument
-
accept
Deprecated.- Specified by:
acceptin interfaceBiConsumer<V,Boolean>
-
andThenBool
- Parameters:
after- the operation to perform after this operation- Returns:
- a composed
Obj2BoolBiConsumerthat performs in sequence this operation followed by theafteroperation
-
andThen
Deprecated.- Specified by:
andThenin interfaceBiConsumer<V,Boolean>
-