public enum EnumChannelStatus extends java.lang.Enum<EnumChannelStatus>
| Enum Constant and Description |
|---|
DISCONNECTED
The DISCONNECTED.
|
INVALID
The INVALID.
|
OK
The OK.
|
QUESTIONABLE
The QUESTIONABLE.
|
TEST_DATA
The TES t_ data.
|
UNCALIBRATED
The UNCALIBRATED.
|
UNZEROED
The UNZEROED.
|
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
Returns the String value of this enum.
|
static EnumChannelStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumChannelStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumChannelStatus OK
public static final EnumChannelStatus TEST_DATA
public static final EnumChannelStatus DISCONNECTED
public static final EnumChannelStatus QUESTIONABLE
public static final EnumChannelStatus INVALID
public static final EnumChannelStatus UNCALIBRATED
public static final EnumChannelStatus UNZEROED
public static EnumChannelStatus[] values()
for (EnumChannelStatus c : EnumChannelStatus.values()) System.out.println(c);
public static EnumChannelStatus valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic java.lang.String getValue()