Class NotEqualsNode
- java.lang.Object
-
- org.xwiki.notifications.filters.expression.generics.AbstractNode
-
- org.xwiki.notifications.filters.expression.generics.AbstractOperatorNode
-
- org.xwiki.notifications.filters.expression.generics.AbstractBinaryOperatorNode
-
- org.xwiki.notifications.filters.expression.NotEqualsNode
-
- All Implemented Interfaces:
ExpressionNode
public final class NotEqualsNode extends AbstractBinaryOperatorNode
Define a NOT EQUALS condition in a filtering expression.- Since:
- 9.7RC1
- Version:
- $Id: f68397e1881dcddbc1576b8afb7c91e437cb1997 $
-
-
Field Summary
-
Fields inherited from class org.xwiki.notifications.filters.expression.generics.AbstractNode
EMPTY_NODE
-
-
Constructor Summary
Constructors Constructor Description NotEqualsNode(AbstractValueNode leftOperand, AbstractValueNode rightOperand)
Constructs a new NOT EQUALS node.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
int
hashCode()
String
toString()
-
Methods inherited from class org.xwiki.notifications.filters.expression.generics.AbstractBinaryOperatorNode
getLeftOperand, getRightOperand
-
Methods inherited from class org.xwiki.notifications.filters.expression.generics.AbstractOperatorNode
and, or
-
-
-
-
Constructor Detail
-
NotEqualsNode
public NotEqualsNode(AbstractValueNode leftOperand, AbstractValueNode rightOperand)
Constructs a new NOT EQUALS node.- Parameters:
leftOperand
- the left operandrightOperand
- the right operand
-
-
Method Detail
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classAbstractBinaryOperatorNode
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classAbstractBinaryOperatorNode
-
-