public enum EnumCM_CardiovascularSurgeries extends java.lang.Enum<EnumCM_CardiovascularSurgeries>
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCM_CardiovascularSurgeries |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCM_CardiovascularSurgeries[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCM_CardiovascularSurgeries PERCUTANEOUS_CORONARY_INTERVENTION
public static final EnumCM_CardiovascularSurgeries CORONARY_ARTERY_BYPASS_GRAFT
public static final EnumCM_CardiovascularSurgeries OPERATION_ON_HEART_VALVE
public static final EnumCM_CardiovascularSurgeries ABLATION_OPERATION_FOR_ARRHYTHMIA
public static final EnumCM_CardiovascularSurgeries IMPLANTATIONOFCARDIACPACEMAKER
public static final EnumCM_CardiovascularSurgeries IMPLANTATION_OF_AUTOMATIC_CARDIAC_DEFIBRILLATOR
public static final EnumCM_CardiovascularSurgeries ABDOMINAL_AORTIC_ANEURYSM_STENTING
public static final EnumCM_CardiovascularSurgeries HEART_TRANSPLANT
public static final EnumCM_CardiovascularSurgeries CORRECTION_OF_CONGENITAL_CARDIOVASCULAR_DEFORMITY
public static EnumCM_CardiovascularSurgeries[] values()
for (EnumCM_CardiovascularSurgeries c : EnumCM_CardiovascularSurgeries.values()) System.out.println(c);
public static EnumCM_CardiovascularSurgeries 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()