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.
|
Condition |
ForeignAdapter.asCondition() |
Adapts a foreign expression into a Cypher-DSL Condition.
|
Condition |
RelationshipBase.asCondition() |
|
Condition |
RelationshipChain.asCondition() |
|
Condition |
RelationshipPattern.asCondition() |
Transform this pattern into a condition.
|
Condition |
StatementBuilder.ExposesExistentialSubqueryCall.asCondition() |
This can be used against a 4.x database to turn this ongoing match statement into a condition to be used
in an existential subquery.
|
Condition |
SymbolicName.asCondition() |
Transform this symbolic name so it can be used directly as condition.
|
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.
|
default Condition |
Expression.eq(Expression rhs) |
|
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) |
Creates a lhs > rhs condition.
|
default Condition |
Expression.gte(Expression rhs) |
Creates a lhs >= rhs condition.
|
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) |
Creates a lhs = rhs condition.
|
Condition |
Node.isEqualTo(Node otherNode) |
Creates a new condition whether this node is equal to 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) |
Creates a lhs <> rhs condition.
|
Condition |
Node.isNotEqualTo(Node otherNode) |
Creates a new condition whether this node is not equal to otherNode.
|
default Condition |
Expression.isNotNull() |
Creates a IS NOT NULL operation for this expression.
|
Condition |
Node.isNotNull() |
Creates a new condition based on this node whether it is not null.
|
default Condition |
Expression.isNull() |
Creates a IS NULL operation for this expression.
|
Condition |
Node.isNull() |
Creates a new condition based on this node whether it is null.
|
static Condition |
Conditions.isTrue() |
|
default Condition |
Expression.isTrue() |
Creates a condition that checks whether this expression is true.
|
default Condition |
Expression.lt(Expression rhs) |
Creates a lhs < rhs condition.
|
default Condition |
Expression.lte(Expression rhs) |
Creates a lhs <= rhs condition.
|
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.
|
default Condition |
Expression.ne(Expression rhs) |
|
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() |
Negates this condition.
|
static Condition |
Conditions.not(Condition condition) |
Negates the given condition.
|
static Condition |
Conditions.not(PatternElement pattern) |
Negates the given pattern element: The pattern must not matched to be included in the reuslt.
|
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.
|