Package org.infinispan.commons.util
Interface InfinispanCollections.Function<E,T>
-
- Type Parameters:
E
- Input type.T
- Output type.
- Enclosing class:
- InfinispanCollections
public static interface InfinispanCollections.Function<E,T>
A function that converts a type into another one.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
transform(E input)
Transforms an instance of the given input into an instace of the type to be returned.
-