Interface Obj2CharBiConsumer<V>
- Type Parameters:
V- the type of the object parameter
- All Superinterfaces:
BiConsumer<V,Character>
- 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 a primitive char as left parameter and a generic object as right parameter.-
Method Summary
Modifier and TypeMethodDescriptiondefault voidDeprecated.voidacceptChar(V left, char right) Performs this operation on the given arguments.default BiConsumer<V,Character> andThen(BiConsumer<? super V, ? super Character> after) Deprecated.default Obj2CharBiConsumer<V>andThenChar(Obj2CharBiConsumer<V> after)
-
Method Details
-
acceptChar
Performs this operation on the given arguments.- Parameters:
left- the first input argumentright- the second input argument
-
accept
Deprecated.- Specified by:
acceptin interfaceBiConsumer<V,Character>
-
andThenChar
- Parameters:
after- the operation to perform after this operation- Returns:
- a composed
Obj2CharBiConsumerthat performs in sequence this operation followed by theafteroperation
-
andThen
Deprecated.- Specified by:
andThenin interfaceBiConsumer<V,Character>
-