public enum MapOrder extends Enum<MapOrder>
Enum Constant and Description |
---|
KEY_ORDERED
Order map by key.
|
KEY_VALUE_ORDERED
Order map by key, then value.
|
UNORDERED
Map is not ordered.
|
Modifier and Type | Field and Description |
---|---|
int |
attributes |
Modifier and Type | Method and Description |
---|---|
static MapOrder |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MapOrder[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MapOrder UNORDERED
public static final MapOrder KEY_ORDERED
public static final MapOrder KEY_VALUE_ORDERED
public static MapOrder[] values()
for (MapOrder c : MapOrder.values()) System.out.println(c);
public static MapOrder 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.