public enum SequenceState extends java.lang.Enum<SequenceState> implements java.io.Serializable
Enum Constant and Description |
---|
Active
Indicates that all sequence operations are active.
|
Disabled
Indicates that all sequence operations are disabled.
|
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static SequenceState |
valueOf(int sequenceStateValue) |
static SequenceState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SequenceState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SequenceState Disabled
public static final SequenceState Active
public static SequenceState[] values()
for (SequenceState c : SequenceState.values()) System.out.println(c);
public static SequenceState 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 SequenceState valueOf(int sequenceStateValue)
sequenceStateValue
- integer valuepublic int getValue()