public enum AuxHeaterState extends Enum<AuxHeaterState>
| 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 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 © 2019 LSST. All rights reserved.