Class AbstractOperatorNode

    • Constructor Detail

      • AbstractOperatorNode

        public AbstractOperatorNode()
    • Method Detail

      • and

        public AndNode and​(AbstractOperatorNode node)
        Helper to construct new AndNode using the current object.
        Parameters:
        node - the node that should be the second operand of the AND node
        Returns:
        a AndNode with the current object as the first operator and the given node as the second operator
      • or

        public OrNode or​(AbstractOperatorNode node)
        Helper to construct new OrNode using the current object.
        Parameters:
        node - the node that should be the second operand of the OR node
        Returns:
        a OrNode with the current object as the first operator and the given node as the second operator