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