Package org.bukkit.block.data.type
Enum Switch.Face
- java.lang.Object
-
- java.lang.Enum<Switch.Face>
-
- org.bukkit.block.data.type.Switch.Face
-
- All Implemented Interfaces:
Serializable
,Comparable<Switch.Face>
- Enclosing interface:
- Switch
public static enum Switch.Face extends Enum<Switch.Face>
The face to which a switch type block is stuck.
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static Switch.Face
valueOf(String name)
Returns the enum constant of this type with the specified name.static Switch.Face[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FLOOR
public static final Switch.Face FLOOR
The switch is mounted to the floor and pointing upwards.
-
WALL
public static final Switch.Face WALL
The switch is mounted to the wall.
-
CEILING
public static final Switch.Face CEILING
The switch is mounted to the ceiling and pointing dowanrds.
-
-
Method Detail
-
values
public static Switch.Face[] 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 (Switch.Face c : Switch.Face.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Switch.Face 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
-
-