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