org.ehcache.function
Interface Function<A,T>

Type Parameters:
A - the function parameter type
T - the function result type

public interface Function<A,T>

Generic function interface for transforming an argument into a value.


Method Summary
 T apply(A a)
          Applies the function to the provided value
 

Method Detail

apply

T apply(A a)
Applies the function to the provided value

Parameters:
a - the value to apply the function to
Returns:
the function result