public enum SortBy extends Enum<SortBy>
The possible options to sort are:
Enum Constant and Description |
---|
CREATION_DATE
The creation date.
|
DIGITAL_ASSET_TYPE
The digital asset type.
|
EXTENSION
The extension.
|
LAST_UPDATE_DATE
The last update date.
|
PHYSICAL_NAME
The physical name.
|
Modifier and Type | Method and Description |
---|---|
com.orchestranetworks.schema.Path |
getSortPath()
Returns the sort path.
|
static SortBy |
parse(String sortType)
Parses the SortBy.
|
String |
toString() |
static SortBy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SortBy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SortBy PHYSICAL_NAME
public static final SortBy CREATION_DATE
public static final SortBy LAST_UPDATE_DATE
public static final SortBy DIGITAL_ASSET_TYPE
public static final SortBy EXTENSION
public static SortBy[] values()
for (SortBy c : SortBy.values()) System.out.println(c);
public static SortBy 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 nullpublic static SortBy parse(String sortType)
sortType
- the sort typepublic com.orchestranetworks.schema.Path getSortPath()