Interface Char2CharBiConsumer
- All Superinterfaces:
BiConsumer<Character,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 two primitive character parameters.-
Method Summary
Modifier and TypeMethodDescriptiondefault voidDeprecated.voidacceptChar(char left, char right) Performs this operation on the given arguments.default BiConsumer<Character,Character> andThen(BiConsumer<? super Character, ? super Character> after) Deprecated.default Char2CharBiConsumerandThenChar(Char2CharBiConsumer after)
-
Method Details
-
acceptChar
void acceptChar(char left, char right) Performs this operation on the given arguments.- Parameters:
left- the first input argumentright- the second input argument
-
accept
Deprecated.- Specified by:
acceptin interfaceBiConsumer<Character,Character>
-
andThenChar
- Parameters:
after- the operation to perform after this operation- Returns:
- a composed
Char2CharBiConsumerthat performs in sequence this operation followed by theafteroperation
-
andThen
@Deprecated default BiConsumer<Character,Character> andThen(BiConsumer<? super Character, ? super Character> after) Deprecated.- Specified by:
andThenin interfaceBiConsumer<Character,Character>
-