Uses of Class
ognl.Evaluation
-
Packages that use Evaluation 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 Evaluation in ognl
Fields in ognl declared as Evaluation Modifier and Type Field Description private EvaluationOgnlContext. _currentEvaluationprivate EvaluationOgnlException. _evaluationThe root evaluation of the expression when the exception was thrownprivate EvaluationOgnlContext. _lastEvaluationprivate EvaluationOgnlContext. _rootEvaluationprivate EvaluationEvaluation. firstChildprivate EvaluationEvaluation. lastChildprivate EvaluationEvaluation. nextprivate EvaluationEvaluation. parentprivate EvaluationEvaluation. previousMethods in ognl that return Evaluation Modifier and Type Method Description EvaluationEvaluationPool. create(SimpleNode node, java.lang.Object source)Returns an Evaluation that contains the node, source and whether it is a set operation.EvaluationEvaluationPool. create(SimpleNode node, java.lang.Object source, boolean setOperation)Returns an Evaluation that contains the node, source and whether it is a set operation.EvaluationOgnlContext. getCurrentEvaluation()Gets the current Evaluation from the top of the stack.EvaluationOgnlContext. getEvaluation(int relativeIndex)Returns the Evaluation at the relative index given.EvaluationOgnlException. getEvaluation()Returns the Evaluation that was the root evaluation when the exception was thrown.EvaluationEvaluation. getFirstChild()Returns the first child of this evaluation.EvaluationEvaluation. getFirstDescendant()Gets the first descendent.EvaluationEvaluation. getLastChild()Returns the last child of this evaluation.EvaluationEvaluation. getLastDescendant()Gets the last descendent.static EvaluationOgnl. getLastEvaluation(java.util.Map context)Gets the lastEvaluationexecuted on the given context.EvaluationOgnlContext. getLastEvaluation()EvaluationEvaluation. getNext()Returns the next sibling of this evaluation.EvaluationEvaluation. getParent()Returns the parent evaluation of this evaluation.EvaluationEvaluation. getPrevious()Returns the previous sibling of this evaluation.EvaluationOgnlContext. getRootEvaluation()Gets the root of the evaluation stack.EvaluationOgnlContext. popEvaluation()Pops the current Evaluation off of the top of the stack.Methods in ognl with parameters of type Evaluation Modifier and Type Method Description voidEvaluation. 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.voidEvaluationPool. recycle(Evaluation value)Deprecated.object-pooling now relies on the jvm garbage collectionvoidEvaluationPool. recycleAll(Evaluation value)Deprecated.object-pooling now relies on the jvm garbage collectionvoidOgnlContext. 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)
-