Uses of Class
org.xwiki.notifications.filters.expression.generics.AbstractNode
-
Packages that use AbstractNode Package Description org.xwiki.notifications.filters.expression org.xwiki.notifications.filters.expression.generics -
-
Uses of AbstractNode in org.xwiki.notifications.filters.expression
Subclasses of AbstractNode in org.xwiki.notifications.filters.expression Modifier and Type Class Description class
AndNode
Define a AND condition in a filtering expression.class
BooleanValueNode
Define value node containing aBoolean
.class
ConcatNode
Define a CONCAT condition in a filtering expression.class
DateValueNode
Define value node containing aDate
.class
EmptyNode
Empty node definition for a filtering expression.class
EndsWith
Define a LIKE ("%value") operation in a filtering expression.class
EntityReferenceNode
Define value node containing aEntityReference
.class
EqualsNode
Define a EQUALS condition in a filtering expression.class
GreaterThanNode
Define a >= condition in a filtering expression.class
InNode
Define a IN operation in a filtering expression.class
InSubQueryNode
Define a IN operation into a given sub query in a filtering expression.class
LesserThanNode
Define a "<=" condition in a filtering expression.class
NotEqualsNode
Define a NOT EQUALS condition in a filtering expression.class
NotNode
Define a NOT operation in a filtering expression.class
OrNode
Define a OR condition in a filtering expression.class
PropertyValueNode
Define value node containing aNotificationFilterProperty
.class
StartsWith
Define a LIKE ("value_%") operation in a filtering expression.class
StringValueNode
Define value node containing aString
.Methods in org.xwiki.notifications.filters.expression that return AbstractNode Modifier and Type Method Description AbstractNode
ConcatNode. getLeftOperand()
AbstractNode
InNode. getLeftOperand()
AbstractNode
InSubQueryNode. getLeftOperand()
AbstractNode
ConcatNode. getRightOperand()
Constructors in org.xwiki.notifications.filters.expression with parameters of type AbstractNode Constructor Description ConcatNode(AbstractNode leftOperand, AbstractNode rightOperand)
Constructs a new CONCAT node. -
Uses of AbstractNode in org.xwiki.notifications.filters.expression.generics
Subclasses of AbstractNode in org.xwiki.notifications.filters.expression.generics Modifier and Type Class Description class
AbstractBinaryOperatorNode
Binary operand node definition for a filtering expression.class
AbstractOperatorNode
Generic operator node definition for filtering expressions.class
AbstractUnaryOperatorNode
Unary operand node definition for a filtering expression.class
AbstractValueNode<T>
Define a node that contains a specific value accessible withAbstractValueNode.getContent()
.Methods in org.xwiki.notifications.filters.expression.generics that return AbstractNode Modifier and Type Method Description AbstractNode
AbstractBinaryOperatorNode. getLeftOperand()
AbstractNode
AbstractUnaryOperatorNode. getOperand()
AbstractNode
AbstractBinaryOperatorNode. getRightOperand()
Constructors in org.xwiki.notifications.filters.expression.generics with parameters of type AbstractNode Constructor Description AbstractBinaryOperatorNode(AbstractNode leftOperand, AbstractNode rightOperand)
Constructs a new binary operator node.AbstractUnaryOperatorNode(AbstractNode operand)
Constructs a newAbstractUnaryOperatorNode
.
-