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