public static enum BoxFolder.SortDirection extends Enum<BoxFolder.SortDirection>
Enum Constant and Description |
---|
ASC
ASC for ascending order.
|
DESC
DESC for descending order.
|
Modifier and Type | Method and Description |
---|---|
static BoxFolder.SortDirection |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BoxFolder.SortDirection[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BoxFolder.SortDirection ASC
public static final BoxFolder.SortDirection DESC
public static BoxFolder.SortDirection[] values()
for (BoxFolder.SortDirection c : BoxFolder.SortDirection.values()) System.out.println(c);
public static BoxFolder.SortDirection valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null