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