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