public enum EnumCM_ECGLeadNoiseDescriptions extends java.lang.Enum<EnumCM_ECGLeadNoiseDescriptions>
| Enum Constant and Description |
|---|
AC_MAINS_NOISE |
ELECTRODE_LOOSE_OR_OFF |
INTERCHANGED_LEAD |
OVERRANGE |
PACEMAKER |
SPIKES_OR_SUDDEN_JUMPS |
TREMOR_OR_MUSCLE_ARTIFACT |
WANDER |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_ECGLeadNoiseDescriptions |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_ECGLeadNoiseDescriptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_ECGLeadNoiseDescriptions AC_MAINS_NOISE
public static final EnumCM_ECGLeadNoiseDescriptions OVERRANGE
public static final EnumCM_ECGLeadNoiseDescriptions WANDER
public static final EnumCM_ECGLeadNoiseDescriptions TREMOR_OR_MUSCLE_ARTIFACT
public static final EnumCM_ECGLeadNoiseDescriptions SPIKES_OR_SUDDEN_JUMPS
public static final EnumCM_ECGLeadNoiseDescriptions ELECTRODE_LOOSE_OR_OFF
public static final EnumCM_ECGLeadNoiseDescriptions PACEMAKER
public static final EnumCM_ECGLeadNoiseDescriptions INTERCHANGED_LEAD
public static EnumCM_ECGLeadNoiseDescriptions[] values()
for (EnumCM_ECGLeadNoiseDescriptions c : EnumCM_ECGLeadNoiseDescriptions.values()) System.out.println(c);
public static EnumCM_ECGLeadNoiseDescriptions 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()