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