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