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