public enum OrderBy extends Enum<OrderBy> implements Serializable
| Enum Constant and Description |
|---|
DateAdded
Order by date added to the metadata collection.
|
DateCreated
Order by date that the asset was created.
|
DateUpdated
Order by date that the asset was updated.
|
Name
Order by name property.
|
Other
Order by another property.
|
Owner
Order by owner property.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getDescription()
Return the description for the enum.
|
String |
getName()
Return the descriptive name for the OrderBy enum instance
|
int |
getOrdinal()
Return the numerical value for the enum.
|
static OrderBy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OrderBy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OrderBy Name
public static final OrderBy Owner
public static final OrderBy DateAdded
public static final OrderBy DateUpdated
public static final OrderBy DateCreated
public static final OrderBy Other
public static OrderBy[] values()
for (OrderBy c : OrderBy.values()) System.out.println(c);
public static OrderBy 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 int getOrdinal()
public String getDescription()
public String getName()
Copyright © 2018 ODPi. All rights reserved.