public enum EnumCM_Pacing extends java.lang.Enum<EnumCM_Pacing>
| Enum Constant and Description |
|---|
ATRIAL_PACING |
AV_SEQUENTIAL_PACING |
PACING |
PACING_WITH_MAGNET |
TEMPORARY_TRANSCUTANEOUS_PACING |
VENTRICULAR_PACING |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_Pacing |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_Pacing[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_Pacing PACING
public static final EnumCM_Pacing PACING_WITH_MAGNET
public static final EnumCM_Pacing ATRIAL_PACING
public static final EnumCM_Pacing VENTRICULAR_PACING
public static final EnumCM_Pacing AV_SEQUENTIAL_PACING
public static final EnumCM_Pacing TEMPORARY_TRANSCUTANEOUS_PACING
public static EnumCM_Pacing[] values()
for (EnumCM_Pacing c : EnumCM_Pacing.values()) System.out.println(c);
public static EnumCM_Pacing 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()