Order |
Order.ascending() |
Sets the sort order as ascending.
|
static Order |
Order.ascending(Column column) |
Creates an Order object with the specified column sorted in ascending order.
|
static Order |
Order.ascending(Column column,
boolean caseSensitive) |
Creates an Order object with the specified column sorted in ascending order and indicates whether it
is case-sensitive.
|
Order |
Order.caseInsensitive() |
Sets the sort as case-insensitive.
|
Order |
Order.caseSensitive() |
Sets the sort as case-sensitive.
|
Order |
Order.column(Column column) |
Sets the column to sort.
|
Order |
Order.descending() |
Sets the sort order as descending.
|
static Order |
Order.descending(Column column) |
Creates an Order object with the specified column sorted in descending order.
|
static Order |
Order.descending(Column column,
boolean caseSensitive) |
Creates an Order object with the specified column sorted in descending order and indicates whether
it is case-sensitive.
|
static Order |
Order.order(Column column,
boolean ascending) |
Creates an Order object with the specified column and indicates whether to sort in ascending order.
|
static Order |
Order.order(Column column,
boolean ascending,
boolean caseSensitive) |
Creates an Order object with the specified column and indicates whether to sort in ascending order
and indicates whether it is case-sensitive.
|