public static enum TableUtils.SortDirection extends Enum<TableUtils.SortDirection>
Enum Constant and Description |
---|
ASCENDING |
DESCENDING |
NONE |
Modifier and Type | Method and Description |
---|---|
static TableUtils.SortDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableUtils.SortDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableUtils.SortDirection NONE
public static final TableUtils.SortDirection ASCENDING
public static final TableUtils.SortDirection DESCENDING
public static TableUtils.SortDirection[] values()
for (TableUtils.SortDirection c : TableUtils.SortDirection.values()) System.out.println(c);
public static TableUtils.SortDirection valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is null