public enum ShutterState extends Enum<ShutterState> implements Serializable
| Modifier and Type | Method and Description |
|---|---|
static ShutterState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ShutterState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ShutterState CLOSED
public static final ShutterState OPENING
public static final ShutterState OPEN
public static final ShutterState CLOSING
public static ShutterState[] values()
for (ShutterState c : ShutterState.values()) System.out.println(c);
public static ShutterState 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.