Uses of Interface
com.tangosol.io.pof.reflect.PofNavigator
-
Packages that use PofNavigator Package Description com.tangosol.io.pof.reflect Contains classes related to POF stream navigation and manipulation.com.tangosol.util Contains various generic utilities.com.tangosol.util.extractor ContainsValueExtractor
andValueUpdater
related classes. -
-
Uses of PofNavigator in com.tangosol.io.pof.reflect
Classes in com.tangosol.io.pof.reflect that implement PofNavigator Modifier and Type Class Description class
AbstractPofPath
Abstract base class for static, path-based implementations ofPofNavigator
interface.class
SimplePofPath
A staticPofNavigator
implementation which uses an array of integer indices to navigate the PofValue hierarchy.Methods in com.tangosol.io.pof.reflect that return PofNavigator Modifier and Type Method Description static PofNavigator
PofReflectionHelper. getPofNavigator(Class clazz, String fieldPath)
Obtain thePofNavigator
to use to navigate to the specified field in a class.PofNavigator
PofReflectionHelper.NavigatorAndType. getPofNavigator()
-
Uses of PofNavigator in com.tangosol.util
Methods in com.tangosol.util with parameters of type PofNavigator Modifier and Type Method Description static <T,E>
ValueExtractor<T,E>Extractors. fromPof(Class<E> cls, PofNavigator navigator)
Returns an extractor that extracts the value of the specified index(es) from a POF encoded binary value. -
Uses of PofNavigator in com.tangosol.util.extractor
Methods in com.tangosol.util.extractor that return PofNavigator Modifier and Type Method Description PofNavigator
PofExtractor. getNavigator()
Obtain the POF navigator for this extractor.Constructors in com.tangosol.util.extractor with parameters of type PofNavigator Constructor Description PofExtractor(Class<E> clz, PofNavigator navigator)
Constructs a PofExtractor based on a POF navigator.PofExtractor(Class<E> clz, PofNavigator navigator, int nTarget)
Constructs a PofExtractor based on a POF navigator and the entry extraction target.PofExtractor(Class<E> clz, PofNavigator navigator, int nTarget, String sNameCanon)
Constructs a PofExtractor based on a POF navigator while providing its canonical name.PofExtractor(Class<E> clz, PofNavigator navigator, String sNameCanon)
Constructs a VALUE PofExtractor based on a POF navigator while providing its canonical name.PofUpdater(PofNavigator navigator)
Constructs a PofUpdater based on a POF navigator.
-