
public enum VacuumTarget extends Enum<VacuumTarget>
| Enum Constant and Description |
|---|
AIR
The system is at air pressure
|
CURRENT
Set the current values as the VacuumTarget.
|
ROUGH
The system is running with roughing pumps only
|
TURBO
The system is running with turbo pumps.
|
UNKNOWN
More information is needed to assess the VacuumTarget.
|
| Modifier and Type | Method and Description |
|---|---|
static VacuumTarget |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VacuumTarget[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VacuumTarget UNKNOWN
public static final VacuumTarget CURRENT
public static final VacuumTarget AIR
public static final VacuumTarget ROUGH
public static final VacuumTarget TURBO
public static VacuumTarget[] values()
for (VacuumTarget c : VacuumTarget.values()) System.out.println(c);
public static VacuumTarget 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 © 2020 LSST. All rights reserved.