public static enum TreeDB.SortingMethod extends java.lang.Enum<TreeDB.SortingMethod>
Enum Constant and Description |
---|
BY_INDEX |
BY_LOCATIONS |
BY_NAMES |
Modifier and Type | Method and Description |
---|---|
static TreeDB.SortingMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TreeDB.SortingMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TreeDB.SortingMethod BY_NAMES
public static final TreeDB.SortingMethod BY_LOCATIONS
public static final TreeDB.SortingMethod BY_INDEX
public static TreeDB.SortingMethod[] values()
for (TreeDB.SortingMethod c : TreeDB.SortingMethod.values()) System.out.println(c);
public static TreeDB.SortingMethod valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null