@Environment(value=CLIENT) public static enum BlockModelRenderer.NeighborOrientation extends Enum<BlockModelRenderer.NeighborOrientation>
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.NeighborOrientation |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BlockModelRenderer.NeighborOrientation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BlockModelRenderer.NeighborOrientation DOWN
public static final BlockModelRenderer.NeighborOrientation UP
public static final BlockModelRenderer.NeighborOrientation NORTH
public static final BlockModelRenderer.NeighborOrientation SOUTH
public static final BlockModelRenderer.NeighborOrientation WEST
public static final BlockModelRenderer.NeighborOrientation EAST
public static final BlockModelRenderer.NeighborOrientation FLIP_DOWN
public static final BlockModelRenderer.NeighborOrientation FLIP_UP
public static final BlockModelRenderer.NeighborOrientation FLIP_NORTH
public static final BlockModelRenderer.NeighborOrientation FLIP_SOUTH
public static final BlockModelRenderer.NeighborOrientation FLIP_WEST
public static final BlockModelRenderer.NeighborOrientation FLIP_EAST
public static BlockModelRenderer.NeighborOrientation[] values()
for (BlockModelRenderer.NeighborOrientation c : BlockModelRenderer.NeighborOrientation.values()) System.out.println(c);
public static BlockModelRenderer.NeighborOrientation valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null