public enum PhysicalState extends Enum<PhysicalState>
| Enum Constant and Description |
|---|
CENTERED
Prepared for power-off.
|
CLOSED
Fully closed.
|
CLOSING
On the way from being fully opened or traveling to being fully closed.
|
ENG_MOVING
Non-standard blade set motion.
|
OPENED
Fully opened.
|
OPENING
On the way from being closed to opened.
|
OTHER
The blade set positions are either unknown or don't fit into any of the
other categories.
|
TRAVELING
Traveling slit.
|
| Modifier and Type | Method and Description |
|---|---|
static PhysicalState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PhysicalState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PhysicalState CLOSED
public static final PhysicalState OPENING
public static final PhysicalState OPENED
public static final PhysicalState TRAVELING
public static final PhysicalState CLOSING
public static final PhysicalState CENTERED
public static final PhysicalState ENG_MOVING
closeShutter(), openShutter() or
takeExposure(). Covers Hall calibration and other
engineering-mode activities.public static final PhysicalState OTHER
public static PhysicalState[] values()
for (PhysicalState c : PhysicalState.values()) System.out.println(c);
public static PhysicalState 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 © 2019 LSST. All rights reserved.