Package com.embabel.agent.spi.expression
Interface LogicalExpressionParser
-
- All Implemented Interfaces:
public interface LogicalExpressionParserImplemented by classes that can parse logical expressions from strings.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public classLogicalExpressionParser.Companion
-
Method Summary
Modifier and Type Method Description abstract LogicalExpressionparse(String expression)Parse the given expression string into a LogicalExpression. -
-
Method Detail
-
parse
abstract LogicalExpression parse(String expression)
Parse the given expression string into a LogicalExpression. Returns null if the expression cannot be parsed. Typically, there is a prefix or syntax that the parser recognizes.
-
-
-
-