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