Package org.bukkit.block.data.type
Enum Bamboo.Leaves
- java.lang.Object
-
- java.lang.Enum<Bamboo.Leaves>
-
- org.bukkit.block.data.type.Bamboo.Leaves
-
- All Implemented Interfaces:
Serializable
,Comparable<Bamboo.Leaves>
- Enclosing interface:
- Bamboo
public static enum Bamboo.Leaves extends Enum<Bamboo.Leaves>
Bamboo leaf size.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Bamboo.Leaves
valueOf(String name)
Returns the enum constant of this type with the specified name.static Bamboo.Leaves[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final Bamboo.Leaves NONE
No leaves.
-
SMALL
public static final Bamboo.Leaves SMALL
Small leaves.
-
LARGE
public static final Bamboo.Leaves LARGE
Large leaves.
-
-
Method Detail
-
values
public static Bamboo.Leaves[] 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 (Bamboo.Leaves c : Bamboo.Leaves.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Bamboo.Leaves 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
-
-