Uses of Interface
org.apache.commons.ognl.ElementsAccessor
-
Packages that use ElementsAccessor Package Description org.apache.commons.ognl -
-
Uses of ElementsAccessor in org.apache.commons.ognl
Classes in org.apache.commons.ognl that implement ElementsAccessor Modifier and Type Class Description class
ArrayElementsAccessor
Implementation of ElementsAccessor that returns an iterator over a Java array.class
CollectionElementsAccessor
Implementation of ElementsAccessor that returns a collection's iterator.class
EnumerationElementsAccessor
Implementation of the ElementsAccessor interface for Enumerations, which returns an iterator that passes its calls through to the target Enumeration.class
IteratorElementsAccessor
Implementation of the ElementsAccessor interface for Iterators, which simply returns the target iterator itself.class
MapElementsAccessor
Implementation of ElementsAccessor that returns an iterator over the map's values.class
NumberElementsAccessor
Implementation of ElementsAccessor that returns an iterator over integers from 0 up to the given target.class
ObjectElementsAccessor
Implementation of ElementsAccessor that returns a single-element iterator, containing the original target object.Fields in org.apache.commons.ognl with type parameters of type ElementsAccessor Modifier and Type Field Description private ClassCache<ElementsAccessor>
OgnlCache. elementsAccessors
Methods in org.apache.commons.ognl that return ElementsAccessor Modifier and Type Method Description ElementsAccessor
OgnlCache. getElementsAccessor(java.lang.Class<?> clazz)
static ElementsAccessor
OgnlRuntime. getElementsAccessor(java.lang.Class<?> clazz)
Methods in org.apache.commons.ognl with parameters of type ElementsAccessor Modifier and Type Method Description void
OgnlCache. setElementsAccessor(java.lang.Class<?> clazz, ElementsAccessor accessor)
static void
OgnlRuntime. setElementsAccessor(java.lang.Class<?> clazz, ElementsAccessor accessor)
-