public static enum Sorting.SortOrder extends Enum<Sorting.SortOrder>
| Enum Constant and Description |
|---|
ASCENDING |
DESCENDING |
NATIVE |
UNSORTED |
| Modifier and Type | Method and Description |
|---|---|
static Sorting.SortOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Sorting.SortOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Sorting.SortOrder ASCENDING
public static final Sorting.SortOrder DESCENDING
public static final Sorting.SortOrder NATIVE
public static final Sorting.SortOrder UNSORTED
public static Sorting.SortOrder[] values()
for (Sorting.SortOrder c : Sorting.SortOrder.values()) System.out.println(c);
public static Sorting.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 © 2017 Regenstrief Center for Biomedical Informatics. All rights reserved.