public interface FloatCharConsumer
extends java.util.function.BiConsumer<java.lang.Float,java.lang.Character>
| Modifier and Type | Method and Description |
|---|---|
void |
accept(float k,
char v)
A Type Specific operation method to reduce boxing/unboxing
Performs this operation on the given arguments.
|
default void |
accept(java.lang.Float k,
java.lang.Character v)
Deprecated.
Please use the corresponding type-specific function instead.
|
default FloatCharConsumer |
andThen(java.util.function.BiConsumer<? super java.lang.Float,? super java.lang.Character> after)
Deprecated.
Please use the corresponding type-specific function instead.
|
default FloatCharConsumer |
andThen(FloatCharConsumer after)
Type Specific sequencing method to reduce boxing/unboxing.
|
void accept(float k,
char v)
k - the first input argumentv - the second input argumentdefault FloatCharConsumer andThen(FloatCharConsumer after)
after - a operation that should be performed afterwardsjava.lang.NullPointerException - if after is null@Deprecated
default void accept(java.lang.Float k,
java.lang.Character v)
This default implementation delegates to the corresponding type-specific function.
accept in interface java.util.function.BiConsumer<java.lang.Float,java.lang.Character>@Deprecated default FloatCharConsumer andThen(java.util.function.BiConsumer<? super java.lang.Float,? super java.lang.Character> after)
This default implementation delegates to the corresponding type-specific function.
andThen in interface java.util.function.BiConsumer<java.lang.Float,java.lang.Character>