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