Interface Parser
- All Known Implementing Classes:
ELParserHarness,SimpleExpressionParser,StringParser
public interface Parser
Interface for expression parsers.
-
Method Summary
Modifier and TypeMethodDescriptionparse(String expr, ExpressionParseContext binder) Parse the given string into anExpression.
-
Method Details
-
parse
Parse the given string into anExpression.- Parameters:
expr- the expression string to parsebinder- theExpressionParseContextto use during parsing- Returns:
- the parsed
Expression - Throws:
Exception- if the expression cannot be parsed
-