public static enum GetOption.SortOrder extends Enum<GetOption.SortOrder>
| Modifier and Type | Method and Description |
|---|---|
static GetOption.SortOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static GetOption.SortOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GetOption.SortOrder NONE
public static final GetOption.SortOrder ASCEND
public static final GetOption.SortOrder DESCEND
public static GetOption.SortOrder[] values()
for (GetOption.SortOrder c : GetOption.SortOrder.values()) System.out.println(c);
public static GetOption.SortOrder 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 © 2019. All rights reserved.