Interface MergeFunction<K,V>
-
- Type Parameters:
K- - the type of the keysV- - the type of the values
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface MergeFunction<K,V>Represents a merge function.- Since:
- 6.7
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Vapply(K key, V oldValue, V value)Applies this mapping function to the given arguments.
-