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 @NotNull StatementBuilder.OngoingReadingAndWithWithSkipskip(Number number)Adds a skip clause, skipping the given number of records.@NotNull StatementBuilder.OngoingReadingAndWithWithSkipskip(Expression expression)Adds a skip clause.
-
-
-
Method Detail
-
skip
@NotNull @CheckReturnValue @NotNull StatementBuilder.OngoingReadingAndWithWithSkip skip(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
@NotNull @CheckReturnValue @NotNull 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
-
-