Uses of Class
ognl.Evaluation
Packages that use Evaluation
Package
Description
OGNL stands for Object-Graph Navigation Language; it is an expression language
for getting and setting properties of Java objects.
-
Uses of Evaluation in ognl
Fields in ognl declared as EvaluationModifier and TypeFieldDescriptionprivate EvaluationOgnlException._evaluationThe root evaluation of the expression when the exception was thrownprivate EvaluationOgnlContext.currentEvaluationprivate EvaluationEvaluation.firstChildprivate EvaluationEvaluation.lastChildprivate EvaluationOgnlContext.lastEvaluationprivate EvaluationEvaluation.nextprivate EvaluationEvaluation.parentprivate EvaluationEvaluation.previousprivate EvaluationOgnlContext.rootEvaluationMethods in ognl that return EvaluationModifier and TypeMethodDescriptionEvaluationPool.create(SimpleNode node, Object source) Returns an Evaluation that contains the node, source and whether it is a set operation.EvaluationPool.create(SimpleNode node, Object source, boolean setOperation) Returns an Evaluation that contains the node, source and whether it is a set operation.OgnlContext.getCurrentEvaluation()Gets the current Evaluation from the top of the stack.OgnlContext.getEvaluation(int relativeIndex) Returns the Evaluation at the relative index given.OgnlException.getEvaluation()Returns the Evaluation that was the root evaluation when the exception was thrown.Evaluation.getFirstChild()Returns the first child of this evaluation.Evaluation.getFirstDescendant()Gets the first descendent.Evaluation.getLastChild()Returns the last child of this evaluation.Evaluation.getLastDescendant()Gets the last descendent.static EvaluationOgnl.getLastEvaluation(OgnlContext context) Gets the lastEvaluationexecuted on the given context.OgnlContext.getLastEvaluation()Evaluation.getNext()Returns the next sibling of this evaluation.Evaluation.getParent()Returns the parent evaluation of this evaluation.Evaluation.getPrevious()Returns the previous sibling of this evaluation.OgnlContext.getRootEvaluation()Gets the root of the evaluation stack.OgnlContext.popEvaluation()Pops the current Evaluation off of the top of the stack.Methods in ognl with parameters of type EvaluationModifier and TypeMethodDescriptionvoidEvaluation.addChild(Evaluation child) Adds a child to the list of children of this evaluation.voidOgnlContext.pushEvaluation(Evaluation value) Pushes a new Evaluation onto the stack.voidOgnlContext.setCurrentEvaluation(Evaluation value) voidOgnlException.setEvaluation(Evaluation value) Sets the Evaluation that was current when this exception was thrown.voidOgnlContext.setLastEvaluation(Evaluation value) voidOgnlContext.setRootEvaluation(Evaluation value)