Class BinaryValueOperator

    • Field Detail

      • leftArg

        protected ValueExpr leftArg
        The operator's left argument.
      • rightArg

        protected ValueExpr rightArg
        The operator's right argument.
    • Constructor Detail

      • BinaryValueOperator

        protected BinaryValueOperator()
      • BinaryValueOperator

        protected BinaryValueOperator​(ValueExpr leftArg,
                                      ValueExpr rightArg)
        Creates a new binary value operator.
        Parameters:
        leftArg - The operator's left argument, must not be null.
        rightArg - The operator's right argument, must not be null.
    • Method Detail

      • getLeftArg

        public ValueExpr getLeftArg()
        Gets the left argument of this binary value operator.
        Returns:
        The operator's left argument.
      • setLeftArg

        public void setLeftArg​(ValueExpr leftArg)
        Sets the left argument of this binary value operator.
        Parameters:
        leftArg - The (new) left argument for this operator, must not be null.
      • getRightArg

        public ValueExpr getRightArg()
        Gets the right argument of this binary value operator.
        Returns:
        The operator's right argument.
      • setRightArg

        public void setRightArg​(ValueExpr rightArg)
        Sets the right argument of this binary value operator.
        Parameters:
        rightArg - The (new) right argument for this operator, must not be null.
      • equals

        public boolean equals​(Object other)
        Description copied from interface: QueryModelNode
        Returns true if this query model node and its children are recursively equal to o and its children.
        Specified by:
        equals in interface QueryModelNode
        Overrides:
        equals in class Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object