Package org.bukkit.entity
Enum MushroomCow.Variant
- java.lang.Object
-
- java.lang.Enum<MushroomCow.Variant>
-
- org.bukkit.entity.MushroomCow.Variant
-
- All Implemented Interfaces:
Serializable
,Comparable<MushroomCow.Variant>
- Enclosing interface:
- MushroomCow
public static enum MushroomCow.Variant extends Enum<MushroomCow.Variant>
Represents the variant of a cow - ie its color.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MushroomCow.Variant
valueOf(String name)
Returns the enum constant of this type with the specified name.static MushroomCow.Variant[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
RED
public static final MushroomCow.Variant RED
Red mushroom cow.
-
BROWN
public static final MushroomCow.Variant BROWN
Brown mushroom cow.
-
-
Method Detail
-
values
public static MushroomCow.Variant[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (MushroomCow.Variant c : MushroomCow.Variant.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MushroomCow.Variant valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-