public static enum BlockModelRenderer.Orientation extends java.lang.Enum<BlockModelRenderer.Orientation>
Enum Constant and Description |
---|
DOWN |
EAST |
FLIP_DOWN |
FLIP_EAST |
FLIP_NORTH |
FLIP_SOUTH |
FLIP_UP |
FLIP_WEST |
NORTH |
SOUTH |
UP |
WEST |
Modifier and Type | Field and Description |
---|---|
private int |
shape |
Modifier and Type | Method and Description |
---|---|
static BlockModelRenderer.Orientation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static BlockModelRenderer.Orientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlockModelRenderer.Orientation DOWN
public static final BlockModelRenderer.Orientation UP
public static final BlockModelRenderer.Orientation NORTH
public static final BlockModelRenderer.Orientation SOUTH
public static final BlockModelRenderer.Orientation WEST
public static final BlockModelRenderer.Orientation EAST
public static final BlockModelRenderer.Orientation FLIP_DOWN
public static final BlockModelRenderer.Orientation FLIP_UP
public static final BlockModelRenderer.Orientation FLIP_NORTH
public static final BlockModelRenderer.Orientation FLIP_SOUTH
public static final BlockModelRenderer.Orientation FLIP_WEST
public static final BlockModelRenderer.Orientation FLIP_EAST
public static BlockModelRenderer.Orientation[] values()
for (BlockModelRenderer.Orientation c : BlockModelRenderer.Orientation.values()) System.out.println(c);
public static BlockModelRenderer.Orientation 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 null