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