public static enum SortingSettings.SortingMethod extends java.lang.Enum<SortingSettings.SortingMethod>
Enum Constant and Description |
---|
BY_INDEX |
BY_LOCATIONS |
BY_NAMES |
Modifier and Type | Method and Description |
---|---|
static SortingSettings.SortingMethod |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SortingSettings.SortingMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SortingSettings.SortingMethod BY_NAMES
public static final SortingSettings.SortingMethod BY_LOCATIONS
public static final SortingSettings.SortingMethod BY_INDEX
public static SortingSettings.SortingMethod[] values()
for (SortingSettings.SortingMethod c : SortingSettings.SortingMethod.values()) System.out.println(c);
public static SortingSettings.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