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