Class LesserThanNode

  • All Implemented Interfaces:
    ExpressionNode

    public final class LesserThanNode
    extends AbstractBinaryOperatorNode
    Define a "<=" condition in a filtering expression.
    Since:
    9.8RC1
    Version:
    $Id: 59c0e2f6a5aa98a39909e4a9b9bfdd92f969c003 $
    • Constructor Detail

      • LesserThanNode

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

        public LesserThanNode​(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 lesser or equals, false if it's only lesser
        Since:
        12.7RC1, 12.6.1