org.springframework.binding.expression |
Core expression language abstraction for parsing and evaluating expressions.
|
Java Source File Name | Type | Comment |
EvaluationAttempt.java | Class | A simple holder for information about an evaluation attempt. |
EvaluationContext.java | Interface | A context object with two main responsibities:
- Exposing information to an expression to influence
an evaluation attempt.
|
EvaluationException.java | Class | Indicates an expression evaluation failed. |
Expression.java | Interface | Evaluates a single parsed expression on the provided input object in the
specified context. |
ExpressionParser.java | Interface | Parses expression strings, returing a configured evaluator instance capable
of performing parsed expression evaluation in a thread safe way. |
ParserException.java | Class | Base class for exceptions thrown during expression parsing. |
SettableExpression.java | Interface | An evaluator that is capable of setting a value on a target object at the
path defined by this expression. |
SetValueAttempt.java | Class | Records an attempt to set an expression value. |