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