Class OrNode
-
- All Implemented Interfaces:
ExpressionNode
public final class OrNode extends AbstractBinaryOperatorNode
Define a OR condition in a filtering expression.- Since:
- 9.7RC1
- Version:
- $Id: b3577d3089f0ba0631d8db85d42af905476ca665 $
-
-
Field Summary
-
Fields inherited from class org.xwiki.notifications.filters.expression.generics.AbstractNode
EMPTY_NODE
-
-
Constructor Summary
Constructors Constructor Description OrNode(AbstractOperatorNode leftOperand, AbstractOperatorNode rightOperand)
Constructs a new OR 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
-
OrNode
public OrNode(AbstractOperatorNode leftOperand, AbstractOperatorNode rightOperand)
Constructs a new OR node.- Parameters:
leftOperand
- the left OR operandrightOperand
- the right OR operand
-
-
Method Detail
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classAbstractBinaryOperatorNode
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classAbstractBinaryOperatorNode
-
-