
public enum StatusKey extends Enum<StatusKey>
| Enum Constant and Description |
|---|
CLOSE_SHUTTER
For a CloseShutterStatus.
|
MOVE_BLADE_SET
For a MoveBladeSetStatus.
|
MOVEMENT
For a MovementStatus.
|
OPEN_SHUTTER
For an OpenShutterStatus.
|
READY
For a ReadyStatus.
|
TAKE_EXPOSURE
For a TakeExposureStatus.
|
UNSAFE_MOVE
For an UnsafeMoveStatus.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getKey()
Retrieve the key value.
|
static StatusKey |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatusKey[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatusKey CLOSE_SHUTTER
public static final StatusKey OPEN_SHUTTER
public static final StatusKey MOVE_BLADE_SET
public static final StatusKey MOVEMENT
public static final StatusKey READY
public static final StatusKey TAKE_EXPOSURE
public static final StatusKey UNSAFE_MOVE
public static StatusKey[] values()
for (StatusKey c : StatusKey.values()) System.out.println(c);
public static StatusKey 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 nullpublic String getKey()
Copyright © 2016 LSST. All rights reserved.