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