
public enum Mode extends Enum<Mode>
| Enum Constant and Description |
|---|
ENGINEERING_FAULT
Commands can be accepted for any Component (provided a sufficient level).
|
ENGINEERING_OK
Commands can be accepted for any Component (provided a sufficient level).
|
NORMAL
Commands that are accepted are only for Subsystem or main module
|
| Modifier and Type | Method and Description |
|---|---|
static Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Mode NORMAL
public static final Mode ENGINEERING_OK
public static final Mode ENGINEERING_FAULT
public static Mode[] values()
for (Mode c : Mode.values()) System.out.println(c);
public static Mode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2015 LSST. All rights reserved.