Class EndsWith
- 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.EndsWith
-
- All Implemented Interfaces:
ExpressionNode
public final class EndsWith extends AbstractBinaryOperatorNode
Define a LIKE ("%value") operation in a filtering expression.- Since:
- 10.2, 9.11.4
- Version:
- $Id: f6833b635179537f16976a441e8416059317a56b $
-
-
Field Summary
-
Fields inherited from class org.xwiki.notifications.filters.expression.generics.AbstractNode
EMPTY_NODE
-
-
Constructor Summary
Constructors Constructor Description EndsWith(AbstractValueNode leftOperand, AbstractValueNode rightOperand)
Constructs a new EndsWith 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
-
EndsWith
public EndsWith(AbstractValueNode leftOperand, AbstractValueNode rightOperand)
Constructs a new EndsWith 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
-
-