Package org.neo4j.cypherdsl.core
Interface StatementBuilder.ExposesWith
-
- All Known Subinterfaces:
ProcedureCall.OngoingInQueryCallWithReturnFields,ProcedureCall.OngoingStandaloneCallWithReturnFields,StatementBuilder.BuildableMatchAndUpdate,StatementBuilder.BuildableOngoingMergeAction,StatementBuilder.OngoingMatchAndUpdate,StatementBuilder.OngoingMerge,StatementBuilder.OngoingReading,StatementBuilder.OngoingReadingAndWith,StatementBuilder.OngoingReadingAndWithWithSkip,StatementBuilder.OngoingReadingAndWithWithWhereAndOrder,StatementBuilder.OngoingReadingWithoutWhere,StatementBuilder.OngoingReadingWithWhere,StatementBuilder.OngoingUpdate,StatementBuilder.OrderableOngoingReadingAndWith,StatementBuilder.OrderableOngoingReadingAndWithWithoutWhere,StatementBuilder.OrderableOngoingReadingAndWithWithWhere
- Enclosing interface:
- StatementBuilder
public static interface StatementBuilder.ExposesWithA step that exposes theWITHclause.- Since:
- 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default StatementBuilder.OrderableOngoingReadingAndWithWithoutWherewith(java.lang.String... variables)StatementBuilder.OrderableOngoingReadingAndWithWithoutWherewith(Expression... expressions)Create a match that returns one or more expressions.default StatementBuilder.OrderableOngoingReadingAndWithWithoutWherewith(Named... variables)default StatementBuilder.OrderableOngoingReadingAndWithWithoutWherewithDistinct(java.lang.String... variables)StatementBuilder.OrderableOngoingReadingAndWithWithoutWherewithDistinct(Expression... expressions)Create a match that returns the distinct set of one or more expressions.default StatementBuilder.OrderableOngoingReadingAndWithWithoutWherewithDistinct(Named... variables)
-
-
-
Method Detail
-
with
default StatementBuilder.OrderableOngoingReadingAndWithWithoutWhere with(java.lang.String... variables)
- Parameters:
variables- The variables to pass on to the next part- Returns:
- A match that can be build now
- See Also:
with(Expression...)
-
with
default StatementBuilder.OrderableOngoingReadingAndWithWithoutWhere with(Named... variables)
- Parameters:
variables- The variables to pass on to the next part- Returns:
- A match that can be build now
- See Also:
with(Expression...)
-
with
StatementBuilder.OrderableOngoingReadingAndWithWithoutWhere with(Expression... expressions)
Create a match that returns one or more expressions.- Parameters:
expressions- The expressions to be returned. Must not be null and be at least one expression.- Returns:
- A match that can be build now
-
withDistinct
default StatementBuilder.OrderableOngoingReadingAndWithWithoutWhere withDistinct(java.lang.String... variables)
- Parameters:
variables- The variables to pass on to the next part- Returns:
- A match that can be build now
- See Also:
withDistinct(Expression...)
-
withDistinct
default StatementBuilder.OrderableOngoingReadingAndWithWithoutWhere withDistinct(Named... variables)
- Parameters:
variables- The variables to pass on to the next part- Returns:
- A match that can be build now
- See Also:
withDistinct(Expression...)
-
withDistinct
StatementBuilder.OrderableOngoingReadingAndWithWithoutWhere withDistinct(Expression... expressions)
Create a match that returns the distinct set of one or more expressions.- Parameters:
expressions- The expressions to be returned. Must not be null and be at least one expression.- Returns:
- A match that can be build now
-
-