public enum CoolantValveState extends Enum<CoolantValveState>
| Modifier and Type | Method and Description |
|---|---|
static CoolantValveState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CoolantValveState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CoolantValveState OPEN
public static final CoolantValveState SHUT
public static final CoolantValveState OFFLINE
public static CoolantValveState[] values()
for (CoolantValveState c : CoolantValveState.values()) System.out.println(c);
public static CoolantValveState 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.