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