public enum ThermalState extends Enum<ThermalState>
| Enum Constant and Description |
|---|
AT_TARGET
The ThermalTarget has been reached.
|
IN_TRANSITION
The system is transitioning to a new ThermalTarget.
|
OFF_TARGET
The system is off the set ThermalTarget.
|
UNKNOWN
The initial thermal state.
|
| Modifier and Type | Method and Description |
|---|---|
static ThermalState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ThermalState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ThermalState UNKNOWN
public static final ThermalState AT_TARGET
public static final ThermalState IN_TRANSITION
public static final ThermalState OFF_TARGET
public static ThermalState[] values()
for (ThermalState c : ThermalState.values()) System.out.println(c);
public static ThermalState 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 © 2024 LSST. All rights reserved.