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