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