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