Uses of Interface
org.springframework.expression.Expression
Package
Description
Expression parsing support within a Spring application context.
Core abstractions behind the Spring Expression Language.
Common utility classes behind the Spring Expression Language.
SpEL's standard parser implementation.
-
Uses of Expression in org.springframework.context.expression
Modifier and TypeMethodDescriptionprotected Expression
CachedExpressionEvaluator.getExpression
(Map<CachedExpressionEvaluator.ExpressionKey, Expression> cache, AnnotatedElementKey elementKey, String expression) Return the parsedExpression
for the specified SpEL expression.protected Expression
CachedExpressionEvaluator.parseExpression
(String expression) Parse the specifiedexpression
.Modifier and TypeMethodDescriptionprotected Expression
CachedExpressionEvaluator.getExpression
(Map<CachedExpressionEvaluator.ExpressionKey, Expression> cache, AnnotatedElementKey elementKey, String expression) Return the parsedExpression
for the specified SpEL expression. -
Uses of Expression in org.springframework.expression
Modifier and TypeMethodDescriptionExpressionParser.parseExpression
(String expressionString) Parse the expression string and return anExpression
object that can be used for repeated evaluation.ExpressionParser.parseExpression
(String expressionString, ParserContext context) Parse the expression string and return anExpression
object that can be used for repeated evaluation. -
Uses of Expression in org.springframework.expression.common
Modifier and TypeClassDescriptionclass
Represents a template expression broken into pieces.class
A very simple, hard-coded implementation of theExpression
interface that represents a string literal.Modifier and TypeMethodDescriptionprotected abstract Expression
TemplateAwareExpressionParser.doParseExpression
(String expressionString, ParserContext context) Actually parse the expression string and return an Expression object.final Expression[]
CompositeStringExpression.getExpressions()
TemplateAwareExpressionParser.parseExpression
(String expressionString) TemplateAwareExpressionParser.parseExpression
(String expressionString, ParserContext context) ModifierConstructorDescriptionCompositeStringExpression
(String expressionString, Expression[] expressions) -
Uses of Expression in org.springframework.expression.spel.standard
Modifier and TypeClassDescriptionclass
ASpelExpression
represents a parsed (valid) expression that is ready to be evaluated in a specified context.Modifier and TypeMethodDescriptionstatic boolean
SpelCompiler.compile
(Expression expression) Request that an attempt is made to compile the specified expression.static void
SpelCompiler.revertToInterpreted
(Expression expression) Request to revert to the interpreter for expression evaluation.