public enum SequencerMainState extends Enum<SequencerMainState>
| Enum Constant and Description |
|---|
CLEAR
The Sequencer Main is clearing.
|
INTEGRATE
The Sequencer Main is integrating.
|
OTHER
The Sequencer Main is something else.
|
READOUT
The Sequencer Main is reading.
|
UNKNOWN
The Sequencer Main is unknown.
|
| Modifier and Type | Method and Description |
|---|---|
static SequencerMainState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SequencerMainState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SequencerMainState UNKNOWN
public static final SequencerMainState CLEAR
public static final SequencerMainState INTEGRATE
public static final SequencerMainState READOUT
public static final SequencerMainState OTHER
public static SequencerMainState[] values()
for (SequencerMainState c : SequencerMainState.values()) System.out.println(c);
public static SequencerMainState 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 © 2024 LSST. All rights reserved.