Package org.bukkit.block.data.type
Enum Wall.Height
- java.lang.Object
-
- java.lang.Enum<Wall.Height>
-
- org.bukkit.block.data.type.Wall.Height
-
- All Implemented Interfaces:
Serializable
,Comparable<Wall.Height>
- Enclosing interface:
- Wall
public static enum Wall.Height extends Enum<Wall.Height>
The different heights a face of a wall may have.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Wall.Height
valueOf(String name)
Returns the enum constant of this type with the specified name.static Wall.Height[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final Wall.Height NONE
No wall present.
-
LOW
public static final Wall.Height LOW
Low wall present.
-
TALL
public static final Wall.Height TALL
Tall wall present.
-
-
Method Detail
-
values
public static Wall.Height[] 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 (Wall.Height c : Wall.Height.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Wall.Height 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
-
-