public static enum ColumnDef.SortDirection extends Enum<ColumnDef.SortDirection>
Modifier and Type | Method and Description |
---|---|
static ColumnDef.SortDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ColumnDef.SortDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ColumnDef.SortDirection ASC
public static final ColumnDef.SortDirection DESC
public static ColumnDef.SortDirection[] values()
for (ColumnDef.SortDirection c : ColumnDef.SortDirection.values()) System.out.println(c);
public static ColumnDef.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 nullCopyright © 2013–2015 Dandelion Project. All rights reserved.