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