public enum EnumCV_StressSymptoms extends java.lang.Enum<EnumCV_StressSymptoms>
| Enum Constant and Description |
|---|
CHEST_DISCOMFORT_F_37006 |
CHEST_PAIN_F_37000 |
CLAUDICATION_F_18010 |
DIZZINESS_F_06017 |
DYSPNEA_F_201B3 |
FATIGUE_F_01360 |
FLUSHING_D0_30017 |
NAUSEA_F_52760 |
SYNCOPE_D3_00006 |
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCV_StressSymptoms |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCV_StressSymptoms[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCV_StressSymptoms DYSPNEA_F_201B3
public static final EnumCV_StressSymptoms CLAUDICATION_F_18010
public static final EnumCV_StressSymptoms SYNCOPE_D3_00006
public static final EnumCV_StressSymptoms FLUSHING_D0_30017
public static final EnumCV_StressSymptoms NAUSEA_F_52760
public static final EnumCV_StressSymptoms DIZZINESS_F_06017
public static final EnumCV_StressSymptoms FATIGUE_F_01360
public static final EnumCV_StressSymptoms CHEST_PAIN_F_37000
public static final EnumCV_StressSymptoms CHEST_DISCOMFORT_F_37006
public static EnumCV_StressSymptoms[] values()
for (EnumCV_StressSymptoms c : EnumCV_StressSymptoms.values()) System.out.println(c);
public static EnumCV_StressSymptoms 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()