public enum EnumCM_ECGAnnotations extends java.lang.Enum<EnumCM_ECGAnnotations>
| Enum Constant and Description |
|---|
FIDUCIAL_POINT |
J_POINT |
J_POINT_20_MSEC |
J_POINT_60_MSEC |
J_POINT_80_MSEC |
P_WAVE_END |
P_WAVE_ONSET |
P_WAVE_PEAK |
PACEMAKER_SPIKE_SUPPRESSED |
PR_SEGMENT_ISOELECTRIC_POINT |
Q_WAVE |
QRS_END |
QRS_ONSET |
R_PEAK |
R_WAVE_PEAK |
S_WAVE1 |
S_WAVE2 |
T_WAVE_END |
T_WAVE_ONSET |
T_WAVE_PEAK |
U_WAVE_PEAK |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_ECGAnnotations |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_ECGAnnotations[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_ECGAnnotations FIDUCIAL_POINT
public static final EnumCM_ECGAnnotations J_POINT
public static final EnumCM_ECGAnnotations J_POINT_20_MSEC
public static final EnumCM_ECGAnnotations J_POINT_60_MSEC
public static final EnumCM_ECGAnnotations J_POINT_80_MSEC
public static final EnumCM_ECGAnnotations P_WAVE_END
public static final EnumCM_ECGAnnotations P_WAVE_ONSET
public static final EnumCM_ECGAnnotations P_WAVE_PEAK
public static final EnumCM_ECGAnnotations PACEMAKER_SPIKE_SUPPRESSED
public static final EnumCM_ECGAnnotations PR_SEGMENT_ISOELECTRIC_POINT
public static final EnumCM_ECGAnnotations Q_WAVE
public static final EnumCM_ECGAnnotations QRS_END
public static final EnumCM_ECGAnnotations QRS_ONSET
public static final EnumCM_ECGAnnotations R_WAVE_PEAK
public static final EnumCM_ECGAnnotations R_PEAK
public static final EnumCM_ECGAnnotations S_WAVE1
public static final EnumCM_ECGAnnotations S_WAVE2
public static final EnumCM_ECGAnnotations T_WAVE_END
public static final EnumCM_ECGAnnotations T_WAVE_ONSET
public static final EnumCM_ECGAnnotations T_WAVE_PEAK
public static final EnumCM_ECGAnnotations U_WAVE_PEAK
public static EnumCM_ECGAnnotations[] values()
for (EnumCM_ECGAnnotations c : EnumCM_ECGAnnotations.values()) System.out.println(c);
public static EnumCM_ECGAnnotations 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()