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