Class NotNode
-
- All Implemented Interfaces:
ExpressionNode
public final class NotNode extends AbstractUnaryOperatorNode
Define a NOT operation in a filtering expression.- Since:
- 9.7RC1
- Version:
- $Id: 7b07fa6185512fae3fd14dcfa19a5318591692f3 $
-
-
Field Summary
-
Fields inherited from class org.xwiki.notifications.filters.expression.generics.AbstractNode
EMPTY_NODE
-
-
Constructor Summary
Constructors Constructor Description NotNode(AbstractOperatorNode operand)
Constructs a new NOT 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.AbstractUnaryOperatorNode
getOperand
-
Methods inherited from class org.xwiki.notifications.filters.expression.generics.AbstractOperatorNode
and, or
-
-
-
-
Constructor Detail
-
NotNode
public NotNode(AbstractOperatorNode operand)
Constructs a new NOT node.- Parameters:
operand
- the operand of the node.
-
-
Method Detail
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classAbstractUnaryOperatorNode
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classAbstractUnaryOperatorNode
-
-