Package | Description |
---|---|
org.jooq |
The
org.jooq package contains jOOQ's public API. |
Modifier and Type | Method and Description |
---|---|
SortField<T> |
Field.asc()
Create an ascending sort field from this field.
|
SortField<T> |
Field.desc()
Create a descending sort field from this field.
|
SortField<T> |
SortField.nullsFirst()
Add a
NULLS FIRST clause to this sort field |
SortField<T> |
SortField.nullsLast()
Add a
NULLS LAST clause to this sort field |
<Z> SortField<Z> |
Field.sort(java.util.Map<T,Z> sortMap)
Create an indirected sort field.
|
SortField<T> |
Field.sort(SortOrder order)
Create an ascending/descending sort field from this field.
|
SortField<java.lang.Integer> |
Field.sortAsc(java.util.Collection<T> sortList)
Create an indirected sort field.
|
SortField<java.lang.Integer> |
Field.sortAsc(T... sortList)
Create an indirected sort field.
|
SortField<T> |
Field.sortDefault()
Create a default sorted (implicit
ASC ) from this field. |
SortField<java.lang.Integer> |
Field.sortDesc(java.util.Collection<T> sortList)
Create an indirected sort field.
|
SortField<java.lang.Integer> |
Field.sortDesc(T... sortList)
Create an indirected sort field.
|
Modifier and Type | Method and Description |
---|---|
java.util.List<SortField<?>> |
Index.getFields()
The sort field expressions on which this index is defined.
|
Copyright © 2018. All Rights Reserved.