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