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