public enum SequencingOrder extends Enum<SequencingOrder> implements Serializable
| Enum Constant and Description |
|---|
ANY |
CREATION_DATE_OLDEST |
CREATION_DATE_RECENT |
GUID |
LAST_UPDATE_OLDEST |
LAST_UPDATE_RECENT |
PROPERTY_ASCENDING |
PROPERTY_DESCENDING |
| Modifier and Type | Method and Description |
|---|---|
String |
getDescription()
Return the default description of the sequencing order.
|
String |
getName()
Return the default name of the sequencing order.
|
int |
getOrdinal()
Return the numeric representation of the sequencing order.
|
String |
toString()
toString() JSON-style
|
static SequencingOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SequencingOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SequencingOrder ANY
public static final SequencingOrder GUID
public static final SequencingOrder CREATION_DATE_RECENT
public static final SequencingOrder CREATION_DATE_OLDEST
public static final SequencingOrder LAST_UPDATE_RECENT
public static final SequencingOrder LAST_UPDATE_OLDEST
public static final SequencingOrder PROPERTY_ASCENDING
public static final SequencingOrder PROPERTY_DESCENDING
public static SequencingOrder[] values()
for (SequencingOrder c : SequencingOrder.values()) System.out.println(c);
public static SequencingOrder 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 getName()
public String getDescription()
public String toString()
toString in class Enum<SequencingOrder>Copyright © 2018–2020 ODPi. All rights reserved.