Package | Description |
---|---|
org.apache.commons.ognl |
OGNL stands for Object-Graph Navigation Language; it is an expression language
for getting and setting properties of Java objects.
|
Modifier and Type | Method and Description |
---|---|
ExpressionAccessor |
SimpleNode.getAccessor() |
ExpressionAccessor |
Node.getAccessor()
Gets the compiled bytecode enhanced expression accessor for getting/setting values.
|
Modifier and Type | Method and Description |
---|---|
static Object |
Ognl.getValue(ExpressionAccessor expression,
OgnlContext context,
Object root)
Gets the value represented by the given pre-compiled expression on the specified root
object.
|
static Object |
Ognl.getValue(ExpressionAccessor expression,
OgnlContext context,
Object root,
Class resultType)
Gets the value represented by the given pre-compiled expression on the specified root
object.
|
void |
SimpleNode.setAccessor(ExpressionAccessor accessor) |
void |
Node.setAccessor(ExpressionAccessor accessor)
Sets a new compiled accessor for this node expression.
|
static void |
Ognl.setValue(ExpressionAccessor expression,
OgnlContext context,
Object root,
Object value)
Sets the value given using the pre-compiled expression on the specified root
object.
|
Copyright © 1997–2021 The Apache Software Foundation. All rights reserved.