public enum EnumCV_Substances extends java.lang.Enum<EnumCV_Substances>
| Modifier and Type | Method and Description |
|---|---|
java.lang.String |
getValue()
This function returns the String value of this enum.
|
static EnumCV_Substances |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EnumCV_Substances[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EnumCV_Substances ETHYL_ALCOHOL_C_21005
public static final EnumCV_Substances AMPHETAMINE_F_618FF
public static final EnumCV_Substances MARIJUANA_DERIVATIVE_F_6166C
public static final EnumCV_Substances COCAINE_F_61C76
public static final EnumCV_Substances HEROIN_F_61AC4
public static final EnumCV_Substances LYSERGIC_ACID_DIETHLYAMIDE_C_63A10
public static final EnumCV_Substances MESCALINE_F_6169A
public static final EnumCV_Substances PHENCYCLIDINE_C_6A180
public static final EnumCV_Substances METHADONE_F_61A95
public static final EnumCV_Substances MORPHINE_F_618D7
public static final EnumCV_Substances METHLYPHENIDATE_F_618FE
public static final EnumCV_Substances CHEWING_TOBACCO_C_F3310
public static final EnumCV_Substances CIGARETTE_SMOKING_TOBACCO_C_F3302
public static final EnumCV_Substances CAFFEINE_F_61117
public static EnumCV_Substances[] values()
for (EnumCV_Substances c : EnumCV_Substances.values()) System.out.println(c);
public static EnumCV_Substances 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()