Package org.neo4j.cypherdsl.core
Interface StatementBuilder.OngoingOrderDefinition
-
- All Superinterfaces:
StatementBuilder.ExposesLimit,StatementBuilder.ExposesSkip
- Enclosing interface:
- StatementBuilder
public static interface StatementBuilder.OngoingOrderDefinition extends StatementBuilder.ExposesSkip, StatementBuilder.ExposesLimit
An intermediate step while defining the order of a with clause.- Since:
- 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T extends StatementBuilder.ExposesSkip & StatementBuilder.ExposesLimit & StatementBuilder.OngoingReadingAndWithWithWhereAndOrder>
Tascending()Specifies ascending order and jumps back to defining the match and return statement.<T extends StatementBuilder.ExposesSkip & StatementBuilder.ExposesLimit & StatementBuilder.OngoingReadingAndWithWithWhereAndOrder>
Tdescending()Specifies descending order and jumps back to defining the match and return statement.-
Methods inherited from interface org.neo4j.cypherdsl.core.StatementBuilder.ExposesLimit
limit
-
Methods inherited from interface org.neo4j.cypherdsl.core.StatementBuilder.ExposesSkip
skip
-
-
-
-
Method Detail
-
descending
<T extends StatementBuilder.ExposesSkip & StatementBuilder.ExposesLimit & StatementBuilder.OngoingReadingAndWithWithWhereAndOrder> T descending()
Specifies descending order and jumps back to defining the match and return statement.- Type Parameters:
T- The type of the next step- Returns:
- The ongoing definition of a match
-
ascending
<T extends StatementBuilder.ExposesSkip & StatementBuilder.ExposesLimit & StatementBuilder.OngoingReadingAndWithWithWhereAndOrder> T ascending()
Specifies ascending order and jumps back to defining the match and return statement.- Type Parameters:
T- The type of the next step- Returns:
- The ongoing definition of a match
-
-