T - the keyType of elements maintained by this CollectionV - the keyType of elements maintained by this Collectionpublic interface ObjectObjectConsumer<T,V>
extends java.util.function.BiConsumer<T,V>
| Modifier and Type | Method and Description |
|---|---|
void |
accept(T k,
V v)
A Type Specific operation method to reduce boxing/unboxing
Performs this operation on the given arguments.
|
default ObjectObjectConsumer<T,V> |
andThen(ObjectObjectConsumer<T,V> after)
Type Specific sequencing method to reduce boxing/unboxing.
|
void accept(T k, V v)
default ObjectObjectConsumer<T,V> andThen(ObjectObjectConsumer<T,V> after)
after - a operation that should be performed afterwardsjava.lang.NullPointerException - if after is null