Package org.infinispan.commons.util
Interface InfinispanCollections.MapMakerFunction<K,V,E>
-
- Type Parameters:
K
- generated keyV
- generated valueE
- entry input
- Enclosing class:
- InfinispanCollections
public static interface InfinispanCollections.MapMakerFunction<K,V,E>
A function that converts an entry into a key/value pair for use in a map.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Map.Entry<K,V>
transform(E input)
Transforms the given input into a key/value pair for use in a map
-