public enum VacuumState extends Enum<VacuumState>
| Enum Constant and Description |
|---|
FORELINE |
ION_OFF |
ION_ON |
OFF |
TURBO_OFF |
TURBO_ON |
UNKNOWN |
VACUUM |
| 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 OFF
public static final VacuumState FORELINE
public static final VacuumState TURBO_OFF
public static final VacuumState TURBO_ON
public static final VacuumState ION_OFF
public static final VacuumState ION_ON
public static final VacuumState VACUUM
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 © 2024 LSST. All rights reserved.