Package | Description |
---|---|
org.xwiki.notifications.filters.expression | |
org.xwiki.notifications.filters.expression.generics |
Modifier and Type | Class and Description |
---|---|
class |
AndNode
Define a AND condition in a filtering expression.
|
class |
EndsWith
Define a LIKE ("%value") operation in a filtering expression.
|
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 |
StartsWith
Define a LIKE ("value_%") operation in a filtering expression.
|
Constructor and Description |
---|
AndNode(AbstractOperatorNode leftOperand,
AbstractOperatorNode rightOperand)
Constructs a new AND node.
|
NotNode(AbstractOperatorNode operand)
Constructs a new NOT node.
|
OrNode(AbstractOperatorNode leftOperand,
AbstractOperatorNode rightOperand)
Constructs a new OR node.
|
Modifier and Type | Class and Description |
---|---|
class |
AbstractBinaryOperatorNode
Binary operand node definition for a filtering expression.
|
class |
AbstractUnaryOperatorNode
Unary operand node definition for a filtering expression.
|
Modifier and Type | Method and Description |
---|---|
AndNode |
AbstractOperatorNode.and(AbstractOperatorNode node)
Helper to construct new
AndNode using the current object. |
static NotNode |
ExpressionBuilder.not(AbstractOperatorNode node)
Instantiate a new
NotNode using the given value. |
OrNode |
AbstractOperatorNode.or(AbstractOperatorNode node)
Helper to construct new
OrNode using the current object. |
Copyright © 2004–2022 XWiki. All rights reserved.