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