Uses of Interface
org.springframework.expression.Expression
Packages that use 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
Methods in org.springframework.context.expression that return ExpressionModifier and TypeMethodDescriptionprotected Expression
CachedExpressionEvaluator.getExpression
(Map<CachedExpressionEvaluator.ExpressionKey, Expression> cache, AnnotatedElementKey elementKey, String expression) Return theExpression
for the specified SpEL valueprotected Expression
CachedExpressionEvaluator.parseExpression
(String expression) Parse the specifiedexpression
.Method parameters in org.springframework.context.expression with type arguments of type ExpressionModifier and TypeMethodDescriptionprotected Expression
CachedExpressionEvaluator.getExpression
(Map<CachedExpressionEvaluator.ExpressionKey, Expression> cache, AnnotatedElementKey elementKey, String expression) Return theExpression
for the specified SpEL value -
Uses of Expression in org.springframework.expression
Methods in org.springframework.expression that return ExpressionModifier and TypeMethodDescriptionExpressionParser.parseExpression
(String expressionString) Parse the expression string and return an Expression object you can use for repeated evaluation.ExpressionParser.parseExpression
(String expressionString, ParserContext context) Parse the expression string and return an Expression object you can use for repeated evaluation. -
Uses of Expression in org.springframework.expression.common
Classes in org.springframework.expression.common that implement ExpressionModifier and TypeClassDescriptionclass
Represents a template expression broken into pieces.class
A very simple hardcoded implementation of the Expression interface that represents a string literal.Methods in org.springframework.expression.common that return ExpressionModifier 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) Constructors in org.springframework.expression.common with parameters of type ExpressionModifierConstructorDescriptionCompositeStringExpression
(String expressionString, Expression[] expressions) -
Uses of Expression in org.springframework.expression.spel.standard
Classes in org.springframework.expression.spel.standard that implement ExpressionModifier and TypeClassDescriptionclass
ASpelExpression
represents a parsed (valid) expression that is ready to be evaluated in a specified context.Methods in org.springframework.expression.spel.standard with parameters of type ExpressionModifier 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.