Package org.neo4j.cypherdsl.core
Interface StatementBuilder.ExposesSkip
-
- All Known Subinterfaces:
StatementBuilder.OngoingOrderDefinition,StatementBuilder.OngoingReadingAndWithWithWhereAndOrder,StatementBuilder.OrderableOngoingReadingAndWith,StatementBuilder.OrderableOngoingReadingAndWithWithoutWhere,StatementBuilder.OrderableOngoingReadingAndWithWithWhere
- Enclosing interface:
- StatementBuilder
public static interface StatementBuilder.ExposesSkipA step that exposes theskip(Number)method.- Since:
- 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StatementBuilder.OngoingReadingAndWithWithSkipskip(java.lang.Number number)Adds a skip clause, skipping the given number of records.StatementBuilder.OngoingReadingAndWithWithSkipskip(Expression expression)Adds a skip clause.
-
-
-
Method Detail
-
skip
StatementBuilder.OngoingReadingAndWithWithSkip skip(java.lang.Number number)
Adds a skip clause, skipping the given number of records.- 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.
-
skip
StatementBuilder.OngoingReadingAndWithWithSkip skip(Expression expression)
Adds a skip clause.- Parameters:
expression- 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.
- Since:
- 2021.0.0
-
-