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