public enum ElectrodeSwitch extends java.lang.Enum<ElectrodeSwitch> implements BaseEnum
Modifier and Type | Method and Description |
---|---|
static ElectrodeSwitch |
getEnum(byte[] data) |
byte[] |
getID() |
ElectrodeSwitch |
getRefEnum(byte[] data) |
java.lang.String |
toString() |
static ElectrodeSwitch |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ElectrodeSwitch[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ElectrodeSwitch REF
public static final ElectrodeSwitch AD8233
public static final ElectrodeSwitch AD5940
public static final ElectrodeSwitch ADPD4000
public static ElectrodeSwitch[] values()
for (ElectrodeSwitch c : ElectrodeSwitch.values()) System.out.println(c);
public static ElectrodeSwitch 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 static ElectrodeSwitch getEnum(byte[] data)
public ElectrodeSwitch getRefEnum(byte[] data)
getRefEnum
in interface BaseEnum
public java.lang.String toString()
toString
in class java.lang.Enum<ElectrodeSwitch>