Package | Description |
---|---|
org.springframework.expression | |
org.springframework.expression.common | |
org.springframework.expression.spel.standard |
Modifier and Type | Method and Description |
---|---|
Expression |
ExpressionParser.parseExpression(String expressionString)
Parse the expression string and return an Expression object you can use for repeated evaluation.
|
Expression |
ExpressionParser.parseExpression(String expressionString,
ParserContext context)
Parse the expression string and return an Expression object you can use for repeated evaluation.
|
Modifier and Type | Class and Description |
---|---|
class |
CompositeStringExpression
Represents a template expression broken into pieces.
|
class |
LiteralExpression
A very simple hardcoded implementation of the Expression interface that represents a string literal.
|
Modifier and Type | Method and Description |
---|---|
protected abstract Expression |
TemplateAwareExpressionParser.doParseExpression(String expressionString,
ParserContext context)
Actually parse the expression string and return an Expression object.
|
Expression[] |
CompositeStringExpression.getExpressions() |
Expression |
TemplateAwareExpressionParser.parseExpression(String expressionString) |
Expression |
TemplateAwareExpressionParser.parseExpression(String expressionString,
ParserContext context) |
Constructor and Description |
---|
CompositeStringExpression(String expressionString,
Expression[] expressions) |
Modifier and Type | Class and Description |
---|---|
class |
SpelExpression
A
SpelExpression represents a parsed (valid) expression that is ready
to be evaluated in a specified context. |
Copyright © 2015. All rights reserved.