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