Package org.neo4j.cypherdsl.core
Interface StatementBuilder.TerminalOngoingOrderDefinition
-
- All Superinterfaces:
StatementBuilder.TerminalExposesLimit,StatementBuilder.TerminalExposesSkip
- Enclosing interface:
- StatementBuilder
public static interface StatementBuilder.TerminalOngoingOrderDefinition extends StatementBuilder.TerminalExposesSkip, StatementBuilder.TerminalExposesLimit
An intermediate step while defining the order of a result set. This definitional will eventually return a buildable statement and thus is terminal.- Since:
- 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T extends StatementBuilder.TerminalExposesSkip & StatementBuilder.TerminalExposesLimit & StatementBuilder.OngoingMatchAndReturnWithOrder>
Tascending()Specifies ascending order and jumps back to defining the match and return statement.<T extends StatementBuilder.TerminalExposesSkip & StatementBuilder.TerminalExposesLimit & StatementBuilder.OngoingMatchAndReturnWithOrder>
Tdescending()Specifies descending order and jumps back to defining the match and return statement.-
Methods inherited from interface org.neo4j.cypherdsl.core.StatementBuilder.TerminalExposesLimit
limit
-
Methods inherited from interface org.neo4j.cypherdsl.core.StatementBuilder.TerminalExposesSkip
skip
-
-
-
-
Method Detail
-
descending
<T extends StatementBuilder.TerminalExposesSkip & StatementBuilder.TerminalExposesLimit & StatementBuilder.OngoingMatchAndReturnWithOrder> 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.TerminalExposesSkip & StatementBuilder.TerminalExposesLimit & StatementBuilder.OngoingMatchAndReturnWithOrder> 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
-
-