@ThingworxExtensionApiClass(since={6,6}) public enum SubsystemState extends java.lang.Enum<SubsystemState>
Enum Constant and Description |
---|
DISABLED |
ERROR |
RUNNING |
STARTING |
STOPPED |
STOPPING |
Modifier and Type | Method and Description |
---|---|
static SubsystemState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static SubsystemState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SubsystemState DISABLED
public static final SubsystemState STARTING
public static final SubsystemState RUNNING
public static final SubsystemState STOPPED
public static final SubsystemState ERROR
public static final SubsystemState STOPPING
public static SubsystemState[] values()
for (SubsystemState c : SubsystemState.values()) System.out.println(c);
public static SubsystemState 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