Condition |
CompoundCondition.and(Condition condition) |
|
default Condition |
Condition.and(Condition condition) |
Adds a condition to this condition with an AND.
|
default Condition |
Condition.and(RelationshipPattern pathPattern) |
Adds a condition based on a path pattern to this condition with an AND.
|
default Condition |
Expression.contains(Expression expression) |
Creates a condition that checks whether this expression contains that expression.
|
default Condition |
Expression.endsWith(Expression expression) |
Creates a condition that checks whether this expression ends with that expression.
|
static Condition |
Predicates.exists(Property property) |
Creates a new condition based on a function invocation for the exists() function.
|
static Condition |
Predicates.exists(RelationshipPattern pattern) |
Creates a new condition based on a function invocation for the exists() function.
|
default Condition |
Expression.gt(Expression rhs) |
|
default Condition |
Expression.gte(Expression rhs) |
|
Condition |
Node.hasLabels(java.lang.String... labelsToQuery) |
A condition that checks for the presence of labels on a node.
|
default Condition |
Expression.in(Expression haystack) |
Creates a IN operation for this expression and that expression.
|
default Condition |
Expression.isEmpty() |
Creates a condition that evaluates to true if this expression is empty.
|
default Condition |
Expression.isEqualTo(Expression rhs) |
|
Condition |
Node.isEqualTo(Node otherNode) |
|
static Condition |
Conditions.isFalse() |
|
default Condition |
Expression.isFalse() |
Creates a condition that checks whether this expression is false.
|
default Condition |
Expression.isNotEqualTo(Expression rhs) |
|
Condition |
Node.isNotEqualTo(Node otherNode) |
|
default Condition |
Expression.isNotNull() |
Creates a IS NOT NULL operation for this expression.
|
Condition |
Node.isNotNull() |
|
default Condition |
Expression.isNull() |
Creates a IS NULL operation for this expression.
|
Condition |
Node.isNull() |
|
static Condition |
Conditions.isTrue() |
|
default Condition |
Expression.isTrue() |
Creates a condition that checks whether this expression is true.
|
default Condition |
Expression.lt(Expression rhs) |
|
default Condition |
Expression.lte(Expression rhs) |
|
default Condition |
Expression.matches(java.lang.String pattern) |
Creates a condition that checks whether this expression matches the given pattern.
|
default Condition |
Expression.matches(Expression expression) |
Creates a condition that checks whether this expression matches that expression.
|
static Condition |
Conditions.noCondition() |
Creates a placeholder condition which is not rendered in the final statement but is useful while chaining
conditions together.
|
default Condition |
Condition.not() |
|
static Condition |
Conditions.not(Condition condition) |
Negates the given condition.
|
static Condition |
Conditions.not(PatternElement patternElement) |
|
Condition |
CompoundCondition.or(Condition condition) |
|
default Condition |
Condition.or(Condition condition) |
Adds a condition to this condition with an OR.
|
default Condition |
Condition.or(RelationshipPattern pathPattern) |
Adds a condition based on a path pattern to this condition with an OR.
|
default Condition |
Expression.startsWith(Expression expression) |
Creates a condition that checks whether this expression starts with that expression.
|
Condition |
Predicates.OngoingListBasedPredicateFunctionWithList.where(Condition condition) |
|
Condition |
CompoundCondition.xor(Condition condition) |
|
default Condition |
Condition.xor(Condition condition) |
Adds a condition to this condition with a XOR.
|
default Condition |
Condition.xor(RelationshipPattern pathPattern) |
Adds a condition based on a path pattern to this condition with a XOR.
|