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 ofValueExtractor
andValueUpdater
implementations.- Since:
- Coherence 3.1
- Author:
- gg 2005.10.31
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ValueExtractor<T,V>
getExtractor()
Retrieve the underlying ValueExtractor reference.ValueUpdater<T,V>
getUpdater()
Retrieve the underlying ValueUpdater reference.
-
-
-
Method Detail
-
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
-
-