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