public enum SequenceOrderType extends Enum<SequenceOrderType>
| Enum Constant and Description |
|---|
ANY
"Any order.
|
CREATION_DATE_OLDEST
Most recently created last
|
CREATION_DATE_RECENT
Most recently created first
|
GUID
Order by GUID
|
LAST_UPDATE_OLDEST
Most recently updated last
|
LAST_UPDATE_RECENT
Most recently updated first
|
PROPERTY_ASCENDING
Order by property value, lowest value first
|
PROPERTY_DESCENDING
Order by property value, lowest value last
|
| Modifier and Type | Method and Description |
|---|---|
static SequenceOrderType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SequenceOrderType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SequenceOrderType ANY
public static final SequenceOrderType GUID
public static final SequenceOrderType CREATION_DATE_RECENT
public static final SequenceOrderType CREATION_DATE_OLDEST
public static final SequenceOrderType LAST_UPDATE_RECENT
public static final SequenceOrderType LAST_UPDATE_OLDEST
public static final SequenceOrderType PROPERTY_ASCENDING
public static final SequenceOrderType PROPERTY_DESCENDING
public static SequenceOrderType[] values()
for (SequenceOrderType c : SequenceOrderType.values()) System.out.println(c);
public static SequenceOrderType 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 © 2018–2019 ODPi. All rights reserved.