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