Package net.minecraft.client.renderer
Enum BlockModelRenderer.EnumNeighborInfo
- java.lang.Object
-
- java.lang.Enum<BlockModelRenderer.EnumNeighborInfo>
-
- net.minecraft.client.renderer.BlockModelRenderer.EnumNeighborInfo
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<BlockModelRenderer.EnumNeighborInfo>
- Enclosing class:
- BlockModelRenderer
public static enum BlockModelRenderer.EnumNeighborInfo extends java.lang.Enum<BlockModelRenderer.EnumNeighborInfo>
-
-
Field Summary
Fields Modifier and Type Field Description protected EnumFacing[]
field_178276_g
protected BlockModelRenderer.Orientation[]
field_178284_l
protected BlockModelRenderer.Orientation[]
field_178285_m
protected BlockModelRenderer.Orientation[]
field_178286_j
protected BlockModelRenderer.Orientation[]
field_178287_k
protected float
field_178288_h
protected boolean
field_178289_i
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BlockModelRenderer.EnumNeighborInfo
getNeighbourInfo(EnumFacing parEnumFacing)
static BlockModelRenderer.EnumNeighborInfo
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BlockModelRenderer.EnumNeighborInfo[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DOWN
public static final BlockModelRenderer.EnumNeighborInfo DOWN
-
UP
public static final BlockModelRenderer.EnumNeighborInfo UP
-
NORTH
public static final BlockModelRenderer.EnumNeighborInfo NORTH
-
SOUTH
public static final BlockModelRenderer.EnumNeighborInfo SOUTH
-
WEST
public static final BlockModelRenderer.EnumNeighborInfo WEST
-
EAST
public static final BlockModelRenderer.EnumNeighborInfo EAST
-
-
Field Detail
-
field_178276_g
protected final EnumFacing[] field_178276_g
-
field_178288_h
protected final float field_178288_h
-
field_178289_i
protected final boolean field_178289_i
-
field_178286_j
protected final BlockModelRenderer.Orientation[] field_178286_j
-
field_178287_k
protected final BlockModelRenderer.Orientation[] field_178287_k
-
field_178284_l
protected final BlockModelRenderer.Orientation[] field_178284_l
-
field_178285_m
protected final BlockModelRenderer.Orientation[] field_178285_m
-
-
Method Detail
-
values
public static BlockModelRenderer.EnumNeighborInfo[] 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 (BlockModelRenderer.EnumNeighborInfo c : BlockModelRenderer.EnumNeighborInfo.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static BlockModelRenderer.EnumNeighborInfo valueOf(java.lang.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:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
getNeighbourInfo
public static BlockModelRenderer.EnumNeighborInfo getNeighbourInfo(EnumFacing parEnumFacing)
-
-