public enum IgniteIdGenOperation extends Enum<IgniteIdGenOperation>
Enum Constant and Description |
---|
ADD_AND_GET |
GET |
GET_AND_ADD |
GET_AND_INCREMENT |
INCREMENT_AND_GET |
Modifier and Type | Method and Description |
---|---|
static IgniteIdGenOperation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IgniteIdGenOperation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IgniteIdGenOperation ADD_AND_GET
public static final IgniteIdGenOperation GET
public static final IgniteIdGenOperation GET_AND_ADD
public static final IgniteIdGenOperation GET_AND_INCREMENT
public static final IgniteIdGenOperation INCREMENT_AND_GET
public static IgniteIdGenOperation[] values()
for (IgniteIdGenOperation c : IgniteIdGenOperation.values()) System.out.println(c);
public static IgniteIdGenOperation 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 nullApache Camel