public enum ThermalTarget extends Enum<ThermalTarget>
| Enum Constant and Description |
|---|
COLD
The target temperature of the cold plate.
|
CRYO
The target temperature of the cryo plate.
|
CURRENT
Set the current values as the ThermalTarget.
|
UNKNOWN
More information is needed to assess the ThermalTarget.
|
WARM
This is the target temperature there is no cooling.
|
| Modifier and Type | Method and Description |
|---|---|
static ThermalTarget |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ThermalTarget[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ThermalTarget UNKNOWN
public static final ThermalTarget CURRENT
public static final ThermalTarget WARM
public static final ThermalTarget COLD
public static final ThermalTarget CRYO
public static ThermalTarget[] values()
for (ThermalTarget c : ThermalTarget.values()) System.out.println(c);
public static ThermalTarget 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 © 2023 LSST. All rights reserved.