public enum SequenceNumberActionType extends Enum<SequenceNumberActionType>
| Enum Constant and Description |
|---|
INCREMENT
Enum value increment.
|
MAX
Enum value max.
|
UPDATE
Enum value update.
|
| Modifier and Type | Method and Description |
|---|---|
static SequenceNumberActionType |
fromString(String value)
Parses a serialized value to a SequenceNumberActionType instance.
|
String |
toString() |
static SequenceNumberActionType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SequenceNumberActionType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SequenceNumberActionType MAX
public static final SequenceNumberActionType UPDATE
public static final SequenceNumberActionType INCREMENT
public static SequenceNumberActionType[] values()
for (SequenceNumberActionType c : SequenceNumberActionType.values()) System.out.println(c);
public static SequenceNumberActionType 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 nullpublic static SequenceNumberActionType fromString(String value)
value - the serialized value to parse.public String toString()
toString in class Enum<SequenceNumberActionType>This documentation was released into the public domain.