public static enum APIConstants.RunState extends java.lang.Enum<APIConstants.RunState>
Enum Constant and Description |
---|
AMM_SHUTDOWN |
AMM_STARTUP |
SCHEDULED_JOB |
Modifier and Type | Method and Description |
---|---|
static APIConstants.RunState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static APIConstants.RunState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final APIConstants.RunState AMM_STARTUP
public static final APIConstants.RunState AMM_SHUTDOWN
public static final APIConstants.RunState SCHEDULED_JOB
public static APIConstants.RunState[] values()
for (APIConstants.RunState c : APIConstants.RunState.values()) System.out.println(c);
public static APIConstants.RunState 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 null