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