public enum BlockRotation extends java.lang.Enum<BlockRotation>
Modifier and Type | Field and Description |
---|---|
int |
metadata |
Modifier and Type | Method and Description |
---|---|
static BlockRotation |
getRotationFromMetadata(int metadata) |
static BlockRotation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BlockRotation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlockRotation Normal
public static final BlockRotation CW
public static final BlockRotation CCW
public static final BlockRotation Rotate180
public static BlockRotation[] values()
for (BlockRotation c : BlockRotation.values()) System.out.println(c);
public static BlockRotation valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static BlockRotation getRotationFromMetadata(int metadata)