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