public enum ListOrder extends Enum<ListOrder>
Enum Constant and Description |
---|
ORDERED
List is ordered.
|
UNORDERED
List is not ordered.
|
Modifier and Type | Field and Description |
---|---|
int |
attributes |
Modifier and Type | Method and Description |
---|---|
static ListOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ListOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListOrder UNORDERED
public static final ListOrder ORDERED
public static ListOrder[] values()
for (ListOrder c : ListOrder.values()) System.out.println(c);
public static ListOrder 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 ? 2012–2018 Aerospike, Inc. All rights reserved.