public enum OperationalState extends Enum<OperationalState>
| 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 top level Agent commands.
|
| Modifier and Type | Method and Description |
|---|---|
static OperationalState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OperationalState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperationalState NORMAL
public static final OperationalState ENGINEERING_OK
public static final OperationalState ENGINEERING_FAULT
public static OperationalState[] values()
for (OperationalState c : OperationalState.values()) System.out.println(c);
public static OperationalState 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.