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