Interface DoubleCharBiConsumer
- All Superinterfaces:
BiConsumer<Double, 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 type-specific
BiConsumer.- Since:
- 8.5.18
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidaccept(double k, char v) Performs this operation on the given entry.default voidDeprecated.Please use the corresponding type-specific method instead.default DoubleCharBiConsumerandThen(DoubleCharBiConsumer after) default BiConsumer<Double, Character> andThen(BiConsumer<? super Double, ? super Character> after) Deprecated.Please use the corresponding type-specific method instead.
-
Method Details
-
accept
void accept(double k, char v) Performs this operation on the given entry.- Parameters:
k- the key.v- the value.
-
accept
Deprecated.Please use the corresponding type-specific method instead.- Specified by:
acceptin interfaceBiConsumer<Double, Character>
-
andThen
-
andThen
@Deprecated default BiConsumer<Double, Character> andThen(BiConsumer<? super Double, ? super Character> after) Deprecated.Please use the corresponding type-specific method instead.- Specified by:
andThenin interfaceBiConsumer<Double, Character>
-