Uses of Class
org.apache.commons.ognl.Evaluation
-
Packages that use Evaluation Package Description org.apache.commons.ognl -
-
Uses of Evaluation in org.apache.commons.ognl
Fields in org.apache.commons.ognl declared as Evaluation Modifier and Type Field Description private Evaluation
OgnlContext. currentEvaluation
private Evaluation
OgnlException. evaluation
The root evaluation of the expression when the exception was thrownprivate Evaluation
Evaluation. firstChild
private Evaluation
Evaluation. lastChild
private Evaluation
OgnlContext. lastEvaluation
private Evaluation
Evaluation. next
private Evaluation
Evaluation. parent
private Evaluation
Evaluation. previous
private Evaluation
OgnlContext. rootEvaluation
Methods in org.apache.commons.ognl that return Evaluation Modifier and Type Method Description Evaluation
OgnlContext. getCurrentEvaluation()
Gets the current Evaluation from the top of the stack.Evaluation
OgnlContext. getEvaluation(int relativeIndex)
Returns the Evaluation at the relative index given.Evaluation
OgnlException. getEvaluation()
Returns the Evaluation that was the root evaluation when the exception was thrown.Evaluation
Evaluation. getFirstChild()
Returns the first child of this evaluation.Evaluation
Evaluation. getFirstDescendant()
Gets the first descendent.Evaluation
Evaluation. getLastChild()
Returns the last child of this evaluation.Evaluation
Evaluation. getLastDescendant()
Gets the last descendent.static Evaluation
Ognl. getLastEvaluation(java.util.Map<java.lang.String,java.lang.Object> context)
Gets the lastEvaluation
executed on the given context.Evaluation
OgnlContext. getLastEvaluation()
Evaluation
Evaluation. getNext()
Returns the next sibling of this evaluation.Evaluation
Evaluation. getParent()
Returns the parent evaluation of this evaluation.Evaluation
Evaluation. getPrevious()
Returns the previous sibling of this evaluation.Evaluation
OgnlContext. getRootEvaluation()
Gets the root of the evaluation stack.Evaluation
OgnlContext. popEvaluation()
Pops the current Evaluation off of the top of the stack.Methods in org.apache.commons.ognl with parameters of type Evaluation Modifier and Type Method Description void
Evaluation. addChild(Evaluation child)
Adds a child to the list of children of this evaluation.void
OgnlContext. pushEvaluation(Evaluation value)
Pushes a new Evaluation onto the stack.void
OgnlContext. setCurrentEvaluation(Evaluation value)
void
OgnlException. setEvaluation(Evaluation value)
Sets the Evaluation that was current when this exception was thrown.void
OgnlContext. setLastEvaluation(Evaluation value)
void
OgnlContext. setRootEvaluation(Evaluation value)
-