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