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