public enum RecycleBinWorkspacesOrder extends Enum<RecycleBinWorkspacesOrder>
Enum Constant and Description |
---|
CREATION_DATE
Order by creation date
|
DELETE_DATE
Order by deletion date
|
NAME
Order by name
|
Modifier and Type | Method and Description |
---|---|
static RecycleBinWorkspacesOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RecycleBinWorkspacesOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RecycleBinWorkspacesOrder NAME
public static final RecycleBinWorkspacesOrder CREATION_DATE
public static final RecycleBinWorkspacesOrder DELETE_DATE
public static RecycleBinWorkspacesOrder[] values()
for (RecycleBinWorkspacesOrder c : RecycleBinWorkspacesOrder.values()) System.out.println(c);
public static RecycleBinWorkspacesOrder 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.