Uses of Interface
ognl.enhance.ExpressionAccessor
-
Packages that use ExpressionAccessor 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 ExpressionAccessor in ognl
Methods in ognl that return ExpressionAccessor Modifier and Type Method Description ExpressionAccessorNode. getAccessor()Gets the compiled bytecode enhanced expression accessor for getting/setting values.ExpressionAccessorSimpleNode. getAccessor()Methods in ognl with parameters of type ExpressionAccessor Modifier and Type Method Description static java.lang.ObjectOgnl. getValue(ExpressionAccessor expression, OgnlContext context, java.lang.Object root)Gets the value represented by the given pre-compiled expression on the specified root object.static java.lang.ObjectOgnl. getValue(ExpressionAccessor expression, OgnlContext context, java.lang.Object root, java.lang.Class resultType)Gets the value represented by the given pre-compiled expression on the specified root object.voidNode. setAccessor(ExpressionAccessor accessor)Sets a new compiled accessor for this node expression.voidSimpleNode. setAccessor(ExpressionAccessor accessor)static voidOgnl. setValue(ExpressionAccessor expression, OgnlContext context, java.lang.Object root, java.lang.Object value)Sets the value given using the pre-compiled expression on the specified root object.
-