Interface LogicalExpressionParser

  • All Implemented Interfaces:

    
    public interface LogicalExpressionParser
    
                        

    Implemented by classes that can parse logical expressions from strings.

    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract LogicalExpression parse(String expression) Parse the given expression string into a LogicalExpression.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • 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.