Class EqualsNode
- 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.EqualsNode
-
- All Implemented Interfaces:
ExpressionNode
public final class EqualsNode extends AbstractBinaryOperatorNode
Define a EQUALS condition in a filtering expression.- Since:
- 9.7RC1
- Version:
- $Id: 18a8c009868f88f9654b541b77b95595de9fc235 $
-
-
Field Summary
-
Fields inherited from class org.xwiki.notifications.filters.expression.generics.AbstractNode
EMPTY_NODE
-
-
Constructor Summary
Constructors Constructor Description EqualsNode(AbstractValueNode leftOperand, AbstractValueNode rightOperand)
Constructs a new 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
-
EqualsNode
public EqualsNode(AbstractValueNode leftOperand, AbstractValueNode rightOperand)
Constructs a new 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
-
-