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