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