Package com.google.common.base
Interface Function<F,T>
- 
- All Known Subinterfaces:
 LoadingCache<K,V>
- All Known Implementing Classes:
 AbstractLoadingCache,CacheLIRS,ForwardingLoadingCache,ForwardingLoadingCache.SimpleForwardingLoadingCache
@GwtCompatible public interface Function<F,T>
Determines an output value based on an input value.The
Functionsclass provides common functions and related utilites.See the Guava User Guide article on the use of
Function.- Since:
 - 2.0 (imported from Google Collections Library)
 
 
- 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tapply(F input)Returns the result of applying this function toinput.booleanequals(java.lang.Object object)Indicates whether another object is equal to this function. 
 - 
 
- 
- 
Method Detail
- 
apply
@Nullable T apply(@Nullable F input)
Returns the result of applying this function toinput. This method is generally expected, but not absolutely required, to have the following properties:- Its execution does not cause any observable side effects.
 - The computation is consistent with equals; that is, 
Objects.equal(a, b)implies thatObjects.equal(function.apply(a), function.apply(b)). 
- Throws:
 java.lang.NullPointerException- ifinputis null and this function does not accept null arguments
 
- 
equals
boolean equals(@Nullable java.lang.Object object)Indicates whether another object is equal to this function.Most implementations will have no reason to override the behavior of
Object.equals(java.lang.Object). However, an implementation may also choose to returntruewheneverobjectis aFunctionthat it considers interchangeable with this one. "Interchangeable" typically means thatObjects.equal(this.apply(f), that.apply(f))is true for allfof typeF. Note that afalseresult from this method does not imply that the functions are known not to be interchangeable.- Overrides:
 equalsin classjava.lang.Object
 
 - 
 
 -