-
- Type Parameters:
K
- type of the first argumentV
- type of the second argument
- All Superinterfaces:
BiConsumer<K,V>
public interface BiConsumer<K,V> extends BiConsumer<K,V>
An operation that accepts two input arguments and returns no result.- Since:
- 2.7
- See Also:
ReadOnlyStringMap
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
accept(K k, V v)
Performs the operation given the specified arguments.-
Methods inherited from interface java.util.function.BiConsumer
andThen
-
-