net.minecraft.util
Enum EnumFacing

java.lang.Object
  extended by java.lang.Enum<EnumFacing>
      extended by net.minecraft.util.EnumFacing
All Implemented Interfaces:
Serializable, Comparable<EnumFacing>

public enum EnumFacing
extends Enum<EnumFacing>


Enum Constant Summary
DOWN
           
EAST
           
NORTH
           
SOUTH
           
UP
           
WEST
           
 
Method Summary
 int func_82599_e()
           
static EnumFacing func_82600_a(int par0)
           
 int func_82601_c()
           
static EnumFacing valueOf(String name)
          Returns the enum constant of this type with the specified name.
static EnumFacing[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

DOWN

public static final EnumFacing DOWN

UP

public static final EnumFacing UP

NORTH

public static final EnumFacing NORTH

SOUTH

public static final EnumFacing SOUTH

EAST

public static final EnumFacing EAST

WEST

public static final EnumFacing WEST
Method Detail

values

public static EnumFacing[] 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 (EnumFacing c : EnumFacing.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static EnumFacing 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 name
NullPointerException - if the argument is null

func_82601_c

public int func_82601_c()

func_82599_e

public int func_82599_e()

func_82600_a

public static EnumFacing func_82600_a(int par0)