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