Module org.neo4j.cypherdsl.core
Package org.neo4j.cypherdsl.core
Interface StatementBuilder.OngoingMatchAndReturnWithOrder
- All Superinterfaces:
StatementBuilder.BuildableStatement<ResultStatement>,StatementBuilder.TerminalExposesLimit,StatementBuilder.TerminalExposesSkip
- Enclosing interface:
- StatementBuilder
public static interface StatementBuilder.OngoingMatchAndReturnWithOrder
extends StatementBuilder.TerminalExposesSkip, StatementBuilder.TerminalExposesLimit, StatementBuilder.BuildableStatement<ResultStatement>
Combines the capabilities of skip, limit and adds additional expressions to the
order-by items.
- Since:
- 1.0
-
Method Summary
Modifier and TypeMethodDescriptionand(Expression expression) Adds another expression to the list of order items.Methods inherited from interface org.neo4j.cypherdsl.core.StatementBuilder.BuildableStatement
build, explain, profileMethods inherited from interface org.neo4j.cypherdsl.core.StatementBuilder.TerminalExposesLimit
limit, limitMethods inherited from interface org.neo4j.cypherdsl.core.StatementBuilder.TerminalExposesSkip
skip, skip
-
Method Details
-
and
Adds another expression to the list of order items.- Parameters:
expression- the expression that is added with an AND- Returns:
- a new order specifying step.
-