| org.springframework.binding.expression.ExpressionParser
All known Subclasses: org.springframework.binding.expression.support.AbstractExpressionParser,
ExpressionParser | public interface ExpressionParser (Code) | | Parses expression strings, returing a configured evaluator instance capable
of performing parsed expression evaluation in a thread safe way.
author: Keith Donald |
Method Summary | |
public boolean | isDelimitedExpression(String expressionString) Is this expression string delimited in a manner that indicates it is a
parseable expression? For example "${expression}". | public Expression | parseExpression(String expressionString) Parse the provided expression string, returning an evaluator capable of
evaluating it against input. | public SettableExpression | parseSettableExpression(String expressionString) Parse the provided settable expression string, returning an evaluator
capable of evaluating its value as well as setting its value. |
isDelimitedExpression | public boolean isDelimitedExpression(String expressionString)(Code) | | Is this expression string delimited in a manner that indicates it is a
parseable expression? For example "${expression}".
Parameters: expressionString - the proposed expression string true if yes, false if not |
parseExpression | public Expression parseExpression(String expressionString) throws ParserException(Code) | | Parse the provided expression string, returning an evaluator capable of
evaluating it against input.
Parameters: expressionString - the parseable expression string the evaluator for the parsed expression throws: ParserException - an exception occured during parsing |
|
|