Class GreaterThanNode

  • All Implemented Interfaces:
    ExpressionNode

    public final class GreaterThanNode
    extends AbstractBinaryOperatorNode
    Define a >= condition in a filtering expression.
    Since:
    9.8RC1
    Version:
    $Id: 40e2450b2cbf9f2a72972b8ddbc4c48460171392 $
    • Constructor Detail

      • GreaterThanNode

        public GreaterThanNode​(AbstractValueNode leftOperand,
                               AbstractValueNode rightOperand)
        Constructs a new ">=" node.
        Parameters:
        leftOperand - the left operand
        rightOperand - the right operand
      • GreaterThanNode

        public GreaterThanNode​(AbstractValueNode leftOperand,
                               AbstractValueNode rightOperand,
                               boolean orEquals)
        Constructs a new "<=" node.
        Parameters:
        leftOperand - the left operand
        rightOperand - the right operand
        orEquals - true if it's a greater or equals, false if it's only lesser
        Since:
        12.7RC1, 12.6.1