
public enum ShutterReadinessState extends Enum<ShutterReadinessState> implements Serializable
| Enum Constant and Description |
|---|
GETTING_READY |
NOT_READY |
READY |
| Modifier and Type | Method and Description |
|---|---|
static ShutterReadinessState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ShutterReadinessState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ShutterReadinessState NOT_READY
public static final ShutterReadinessState READY
public static final ShutterReadinessState GETTING_READY
public static ShutterReadinessState[] values()
for (ShutterReadinessState c : ShutterReadinessState.values()) System.out.println(c);
public static ShutterReadinessState 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 © 2020 LSST. All rights reserved.