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