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

    Modifier and Type
    Method
    Description
    transform(E input)
    Transforms an instance of the given input into an instace of the type to be returned.
  • Method Details

    • transform

      T transform(E input)
      Transforms an instance of the given input into an instace of the type to be returned.
      Parameters:
      input - Instance of the input type.
      Returns:
      Instance of the output type.