Class BinaryExpression

java.lang.Object
org.apache.camel.language.simple.ast.BaseSimpleNode
org.apache.camel.language.simple.ast.BinaryExpression
All Implemented Interfaces:
SimpleNode

public class BinaryExpression extends BaseSimpleNode
Represents a binary expression in the AST.
  • Constructor Details

    • BinaryExpression

      public BinaryExpression(SimpleToken token)
  • Method Details

    • toString

      public String toString()
      Overrides:
      toString in class BaseSimpleNode
    • acceptLeftNode

      public boolean acceptLeftNode(SimpleNode lef)
    • acceptRightNode

      public boolean acceptRightNode(SimpleNode right)
    • getOperator

      public BinaryOperatorType getOperator()
    • getLeft

      public SimpleNode getLeft()
    • getRight

      public SimpleNode getRight()
    • createExpression

      public org.apache.camel.Expression createExpression(org.apache.camel.CamelContext camelContext, String expression)
      Description copied from interface: SimpleNode
      Creates a Camel Expression based on this model.
      Parameters:
      camelContext - the camel context
      expression - the input string
      Returns:
      the created Expression
    • createCode

      public String createCode(org.apache.camel.CamelContext camelContext, String expression) throws SimpleParserException
      Description copied from interface: SimpleNode
      Creates Java code based on this model.
      Parameters:
      camelContext - the camel context
      expression - the input string
      Returns:
      the created Java code
      Throws:
      SimpleParserException - should be thrown if error parsing the model