Uses of Interface
org.jooq.SortField
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of SortField in org.jooq
Modifier and TypeMethodDescription<U> @NotNull SortField<U>
Experimental query object model mutator method, see alsoQOM
.SortField.$nullOrdering
(QOM.NullOrdering newOrdering) Experimental query object model mutator method, see alsoQOM
.SortField.$sortOrder
(SortOrder newOrder) Experimental query object model mutator method, see alsoQOM
.Field.asc()
Create an ascending sort field from this field.Field.desc()
Create a descending sort field from this field.Field.nullsFirst()
Convenience method forField.sortDefault()
and thennullsFirst()
.SortField.nullsFirst()
Add aNULLS FIRST
clause to this sort fieldField.nullsLast()
Convenience method forField.sortDefault()
and thennullsLast()
.SortField.nullsLast()
Add aNULLS LAST
clause to this sort field@NotNull SortField<?>
ParseContext.parseSortField()
Parse aSortField
expression or fail if the current expression is not a sort field.<Z> @NotNull SortField<Z>
Create an indirected sort field.Create an ascending/descending sort field from this field.Field.sortAsc
(Collection<T> sortList) Create an indirected sort field.Create an indirected sort field.Field.sortDefault()
Create a default sorted (implicitASC
) from this field.Field.sortDesc
(Collection<T> sortList) Create an indirected sort field.Create an indirected sort field.Modifier and TypeMethodDescription@NotNull QOM.UnmodifiableList<? extends SortField<?>>
Select.$orderBy()
Experimental query object model accessor method, see alsoQOM
.@NotNull QOM.UnmodifiableList<? extends SortField<?>>
WindowSpecification.$orderBy()
Experimental query object model accessor method, see alsoQOM
.Index.getFields()
The sort field expressions on which this index is defined. -
Uses of SortField in org.jooq.impl
Modifier and TypeMethodDescription@NotNull QOM.UnmodifiableList<? extends SortField<?>>
QOM.Delete.$orderBy()
@NotNull QOM.UnmodifiableList<? extends SortField<?>>
QOM.Update.$orderBy()
Modifier and TypeMethodDescription@NotNull QOM.Delete<R>
QOM.Delete.$orderBy
(Collection<? extends SortField<?>> orderBy) @NotNull QOM.Update<R>
QOM.Update.$orderBy
(Collection<? extends SortField<?>> orderBy)