de.jtem.jrworkspace.plugin.simplecontroller
Enum SimpleController.Status
java.lang.Object
java.lang.Enum<SimpleController.Status>
de.jtem.jrworkspace.plugin.simplecontroller.SimpleController.Status
- All Implemented Interfaces:
- Serializable, Comparable<SimpleController.Status>
- Enclosing class:
- SimpleController
public static enum SimpleController.Status
- extends Enum<SimpleController.Status>
PreStartup
public static final SimpleController.Status PreStartup
Started
public static final SimpleController.Status Started
Starting
public static final SimpleController.Status Starting
valueOf
public static SimpleController.Status valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name
- the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
values
public static SimpleController.Status[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (SimpleController.Status c : SimpleController.Status.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
jTEM