Package com.oracle.coherence.common.base
Interface Converter<F,T>
- Type Parameters:
F- the from typeT- the to type
- All Superinterfaces:
Function<F,T>
- All Known Subinterfaces:
Converter<F,T>
- All Known Implementing Classes:
MapListenerProxy.KeyConverter,NullImplementation.NullConverter,RequestHolder.DownConverter,RequestHolder.ErrorHandlingConverter,RequestHolder.UpConverter,SimpleOverflowMap.FrontFilterConverter
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Provide for "pluggable" object conversions.
- Author:
- pm 2000.04.25
-
Method Summary
-
Method Details
-
convert
Convert the passed object to another object.- Parameters:
value- the object to convert- Returns:
- the converted form of the passed object
- Throws:
IllegalArgumentException- describes a conversion error
-
apply
-