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