Uses of Interface
org.apache.commons.ognl.PropertyAccessor
-
Packages that use PropertyAccessor Package Description org.apache.commons.ognl -
-
Uses of PropertyAccessor in org.apache.commons.ognl
Classes in org.apache.commons.ognl that implement PropertyAccessor Modifier and Type Class Description classArrayPropertyAccessorImplementation of PropertyAccessor that uses numbers and dynamic subscripts as properties to index into Java arrays.classEnumerationPropertyAccessorImplementation of PropertyAccessor that provides "property" reference to "nextElement" (aliases to "next" also) and "hasMoreElements" (also aliased to "hasNext").classIteratorPropertyAccessorImplementation of PropertyAccessor that provides "property" reference to "next" and "hasNext".classListPropertyAccessorImplementation of PropertyAccessor that uses numbers and dynamic subscripts as properties to index into Lists.classMapPropertyAccessorImplementation of PropertyAccessor that sets and gets properties by storing and looking up values in Maps.classObjectPropertyAccessorImplementation of PropertyAccessor that uses reflection on the target object's class to find a field or a pair of set/get methods with the given property name.classSetPropertyAccessorImplementation of PropertyAccessor that uses numbers and dynamic subscripts as properties to index into Lists.Fields in org.apache.commons.ognl with type parameters of type PropertyAccessor Modifier and Type Field Description private ClassCache<PropertyAccessor>OgnlCache. propertyAccessorsMethods in org.apache.commons.ognl that return PropertyAccessor Modifier and Type Method Description PropertyAccessorOgnlCache. getPropertyAccessor(java.lang.Class<?> clazz)static PropertyAccessorOgnlRuntime. getPropertyAccessor(java.lang.Class<?> clazz)Methods in org.apache.commons.ognl with parameters of type PropertyAccessor Modifier and Type Method Description voidOgnlCache. setPropertyAccessor(java.lang.Class<?> clazz, PropertyAccessor accessor)static voidOgnlRuntime. setPropertyAccessor(java.lang.Class<?> clazz, PropertyAccessor accessor)
-