
public enum VfdState extends Enum<VfdState>
| Enum Constant and Description |
|---|
ALARM |
FAULT |
OFFLINE |
REVERSE |
RUNNING |
STOPPED |
ZEROFREQ |
| Modifier and Type | Method and Description |
|---|---|
static VfdState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static VfdState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final VfdState RUNNING
public static final VfdState ZEROFREQ
public static final VfdState REVERSE
public static final VfdState STOPPED
public static final VfdState ALARM
public static final VfdState FAULT
public static final VfdState OFFLINE
public static VfdState[] values()
for (VfdState c : VfdState.values()) System.out.println(c);
public static VfdState 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 © 2022 LSST. All rights reserved.