Package org.neo4j.cypherdsl.core
Interface StatementBuilder.TerminalExposesSkip
-
- All Known Subinterfaces:
StatementBuilder.OngoingMatchAndReturnWithOrder,StatementBuilder.OngoingReadingAndReturn,StatementBuilder.TerminalOngoingOrderDefinition
- Enclosing interface:
- StatementBuilder
public static interface StatementBuilder.TerminalExposesSkipA step that exposes theskip(Number)method.- Since:
- 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T extends StatementBuilder.TerminalExposesLimit & StatementBuilder.BuildableStatement>
Tskip(java.lang.Number number)Adds a skip clause, skipping the given number of records.
-
-
-
Method Detail
-
skip
<T extends StatementBuilder.TerminalExposesLimit & StatementBuilder.BuildableStatement> T skip(java.lang.Number number)
Adds a skip clause, skipping the given number of records.- Type Parameters:
T- The type of the next step- Parameters:
number- How many records to skip. If this is null, then no records are skipped.- Returns:
- A step that only allows the limit of records to be specified.
-
-