Package org.neo4j.cypherdsl.core
Interface ExposesUnwind
-
- All Known Subinterfaces:
LoadCSVStatementBuilder,StatementBuilder,StatementBuilder.OngoingReading,StatementBuilder.OngoingReadingAndWith,StatementBuilder.OngoingReadingAndWithWithSkip,StatementBuilder.OngoingReadingAndWithWithWhereAndOrder,StatementBuilder.OngoingReadingWithoutWhere,StatementBuilder.OngoingReadingWithWhere,StatementBuilder.OrderableOngoingReadingAndWith,StatementBuilder.OrderableOngoingReadingAndWithWithoutWhere,StatementBuilder.OrderableOngoingReadingAndWithWithWhere
@API(status=EXPERIMENTAL, since="1.0") public interface ExposesUnwind- Since:
- 1.0
- Author:
- Michael J. Simons
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default StatementBuilder.OngoingUnwindunwind(String variable)Starts building a newUNWINDclause.StatementBuilder.OngoingUnwindunwind(Expression expression)Starts building a newUNWINDclause.default StatementBuilder.OngoingUnwindunwind(Expression... expressions)Starts building a newUNWINDclause.
-
-
-
Method Detail
-
unwind
@NotNull @CheckReturnValue default StatementBuilder.OngoingUnwind unwind(Expression... expressions)
Starts building a newUNWINDclause.- Parameters:
expressions- The things to unwind.- Returns:
- An ongoing definition of an unwind.
-
unwind
@NotNull @CheckReturnValue default StatementBuilder.OngoingUnwind unwind(String variable)
Starts building a newUNWINDclause.- Parameters:
variable- The thing to unwind.- Returns:
- An ongoing definition of an unwind.
-
unwind
StatementBuilder.OngoingUnwind unwind(Expression expression)
Starts building a newUNWINDclause.- Parameters:
expression- The things to unwind.- Returns:
- An ongoing definition of an unwind.
-
-