Uses of Enum Class
org.jooq.SortOrder

Packages that use SortOrder
Package
Description
This package contains jOOQ's public API.
  • Uses of SortOrder in org.jooq

    Methods in org.jooq that return SortOrder
    Modifier and Type
    Method
    Description
    @NotNull SortOrder
    SortField.$sortOrder()
    Experimental query object model accessor method, see also QOM.
    @NotNull SortOrder
    SortField.getOrder()
    Get the underlying sort order of this sort field
    static SortOrder
    SortOrder.valueOf(String name)
    Returns the enum constant of this class with the specified name.
    static SortOrder[]
    SortOrder.values()
    Returns an array containing the constants of this enum class, in the order they are declared.
    Methods in org.jooq with parameters of type SortOrder
    Modifier and Type
    Method
    Description
    @NotNull SortField<T>
    Field.sort(SortOrder order)
    Create an ascending/descending sort field from this field.