
public enum MCMState extends Enum<MCMState>
| Enum Constant and Description |
|---|
CONFIGURING |
IDLE |
IMAGESTARTED |
PREPARING |
SETTINGFILTER |
TAKINGIMAGES |
| Modifier and Type | Method and Description |
|---|---|
static MCMState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static MCMState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MCMState IDLE
public static final MCMState TAKINGIMAGES
public static final MCMState SETTINGFILTER
public static final MCMState PREPARING
public static final MCMState IMAGESTARTED
public static final MCMState CONFIGURING
public static MCMState[] values()
for (MCMState c : MCMState.values()) System.out.println(c);
public static MCMState 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.