public enum DocumentReportOrder extends Enum<DocumentReportOrder>
Enum Constant and Description |
---|
FILE_NAME
Sort by file display name
|
LAST_UPDATED
Sort by last file update
|
LAST_VIEWED
not supported
|
ORIGINAL_UPLOADER
Sort by sender email address.
|
SIZE |
Modifier and Type | Method and Description |
---|---|
static DocumentReportOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DocumentReportOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DocumentReportOrder FILE_NAME
public static final DocumentReportOrder ORIGINAL_UPLOADER
public static final DocumentReportOrder LAST_UPDATED
public static final DocumentReportOrder LAST_VIEWED
public static final DocumentReportOrder SIZE
public static DocumentReportOrder[] values()
for (DocumentReportOrder c : DocumentReportOrder.values()) System.out.println(c);
public static DocumentReportOrder 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 nullCopyright © 2019. All rights reserved.