Uses of Class
org.neo4j.cypherdsl.core.SortItem
-
Packages that use SortItem Package Description org.neo4j.cypherdsl.core Contains an internal DSL for creating Cypher. -
-
Uses of SortItem in org.neo4j.cypherdsl.core
Methods in org.neo4j.cypherdsl.core that return SortItem Modifier and Type Method Description default @NotNull SortItemExpression. ascending()The property does not track the sort items created here.@NotNull SortItemNode. ascending()Creates a new sort item of this node in ascending order.@NotNull SortItemSortItem. ascending()Creates a new sort item from this instance, setting the sort direction to ascending.default @NotNull SortItemExpression. descending()The property does not track the sort items created here.@NotNull SortItemNode. descending()Creates a new sort item of this node in descending order.@NotNull SortItemSortItem. descending()Creates a new sort item from this instance, setting the sort direction to descending.static @NotNull SortItemCypher. sort(Expression expression)static @NotNull SortItemCypher. sort(Expression expression, SortItem.Direction direction)default @NotNull SortItemExpression. sorted(SortItem.Direction direction)Creates a new sort item with the given direction.Methods in org.neo4j.cypherdsl.core with parameters of type SortItem Modifier and Type Method Description @NotNull StatementBuilder.OrderableOngoingReadingAndWithWithWhereStatementBuilder.ExposesOrderBy. orderBy(SortItem... sortItem)Order the result set by one or moresort items.@NotNull StatementBuilder.OngoingMatchAndReturnWithOrderStatementBuilder.TerminalExposesOrderBy. orderBy(SortItem... sortItem)Order the result set by one or moresort items.Method parameters in org.neo4j.cypherdsl.core with type arguments of type SortItem Modifier and Type Method Description @NotNull StatementBuilder.OrderableOngoingReadingAndWithWithWhereStatementBuilder.ExposesOrderBy. orderBy(Collection<SortItem> sortItem)Order the result set by one or moresort items.@NotNull StatementBuilder.OngoingMatchAndReturnWithOrderStatementBuilder.TerminalExposesOrderBy. orderBy(Collection<SortItem> sortItem)Order the result set by one or moresort items.
-