public static enum DAPSort.SortOrder extends Enum<DAPSort.SortOrder>
| Enum Constant and Description |
|---|
ASCENDING |
DESCENDING |
| Modifier and Type | Method and Description |
|---|---|
static String |
value(DAPSort.SortOrder sortOrder) |
static DAPSort.SortOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DAPSort.SortOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DAPSort.SortOrder ASCENDING
public static final DAPSort.SortOrder DESCENDING
public static DAPSort.SortOrder[] values()
for (DAPSort.SortOrder c : DAPSort.SortOrder.values()) System.out.println(c);
public static DAPSort.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 nullpublic static String value(DAPSort.SortOrder sortOrder)
Copyright © 1999–2015. All rights reserved.