Package com.tangosol.util
Interface ValueManipulator<T,V>
- Type Parameters:
T- the type of objectV- the type of value that will be extracted/updated from/on object
- All Known Implementing Classes:
CompositeUpdater,MvelManipulator,PropertyManipulator
public interface ValueManipulator<T,V>
ValueManipulator represents a composition of
ValueExtractor and
ValueUpdater implementations.- Since:
- Coherence 3.1
- Author:
- gg 2005.10.31
-
Method Summary
Modifier and TypeMethodDescriptionRetrieve the underlying ValueExtractor reference.Retrieve the underlying ValueUpdater reference.
-
Method Details
-
getExtractor
ValueExtractor<T,V> getExtractor()Retrieve the underlying ValueExtractor reference.- Returns:
- the ValueExtractor
-
getUpdater
ValueUpdater<T,V> getUpdater()Retrieve the underlying ValueUpdater reference.- Returns:
- the ValueUpdater
-