public enum DistributedDataStructure extends java.lang.Enum<DistributedDataStructure>
Enum Constant | Description |
---|---|
Counter |
For distributed counter.
|
List |
For distributed list.
|
Map |
For distributed dictionary.
|
Queue |
For distributed queue.
|
Set |
For distributed set.
|
Modifier and Type | Method | Description |
---|---|---|
static DistributedDataStructure |
forValue(int value) |
retreives the enum constant of the specified value, if exists.
|
int |
getValue() |
Order is important in enums.By using getValue() method, each enum constant index can be found, just like array index.
|
static DistributedDataStructure |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static DistributedDataStructure[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DistributedDataStructure List
public static final DistributedDataStructure Queue
public static final DistributedDataStructure Set
public static final DistributedDataStructure Map
public static final DistributedDataStructure Counter
public static DistributedDataStructure[] values()
for (DistributedDataStructure c : DistributedDataStructure.values()) System.out.println(c);
public static DistributedDataStructure valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static DistributedDataStructure forValue(int value)
value
- enum constant indexpublic int getValue()