Uses of Interface
ognl.ElementsAccessor
-
Packages that use ElementsAccessor Package Description ognl OGNL stands for Object-Graph Navigation Language; it is an expression language for getting and setting properties of Java objects. -
-
Uses of ElementsAccessor in ognl
Classes in ognl that implement ElementsAccessor Modifier and Type Class Description classArrayElementsAccessorImplementation of ElementsAccessor that returns an iterator over a Java array.classCollectionElementsAccessorImplementation of ElementsAccessor that returns a collection's iterator.classEnumerationElementsAccessorImplementation of the ElementsAccessor interface for Enumerations, which returns an iterator that passes its calls through to the target Enumeration.classIteratorElementsAccessorImplementation of the ElementsAccessor interface for Iterators, which simply returns the target iterator itself.classMapElementsAccessorImplementation of ElementsAccessor that returns an iterator over the map's values.classNumberElementsAccessorImplementation of ElementsAccessor that returns an iterator over integers from 0 up to the given target.classObjectElementsAccessorImplementation of ElementsAccessor that returns a single-element iterator, containing the original target object.Fields in ognl with type parameters of type ElementsAccessor Modifier and Type Field Description private ClassCache<ElementsAccessor>OgnlCache. elementsAccessorsMethods in ognl that return ElementsAccessor Modifier and Type Method Description ElementsAccessorOgnlCache. getElementsAccessor(java.lang.Class<?> clazz)static ElementsAccessorOgnlRuntime. getElementsAccessor(java.lang.Class<?> clazz)Methods in ognl with parameters of type ElementsAccessor Modifier and Type Method Description voidOgnlCache. setElementsAccessor(java.lang.Class<?> clazz, ElementsAccessor accessor)static voidOgnlRuntime. setElementsAccessor(java.lang.Class<?> clazz, ElementsAccessor accessor)
-