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