Interface ValueManipulator<T,V>

Type Parameters:
T - the type of object
V - the type of value that will be extracted/updated from/on object
All Known Implementing Classes:
CompositeUpdater, PropertyManipulator, UniversalManipulator

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 Type
    Method
    Description
    Retrieve 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