public static enum DistributedMultiMap.Order extends Enum<DistributedMultiMap.Order>
| Enum Constant and Description |
|---|
INSERT
Indicates that values should be stored in insertion order.
|
NATURAL
Indicates that values should be stored in natural order.
|
NONE
Indicates that no order is required for values.
|
| Modifier and Type | Method and Description |
|---|---|
static DistributedMultiMap.Order |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DistributedMultiMap.Order[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DistributedMultiMap.Order NATURAL
public static final DistributedMultiMap.Order INSERT
public static final DistributedMultiMap.Order NONE
public static DistributedMultiMap.Order[] values()
for (DistributedMultiMap.Order c : DistributedMultiMap.Order.values()) System.out.println(c);
public static DistributedMultiMap.Order 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 © 2013–2017. All rights reserved.