zombie.iso.SpriteDetails
Enum IsoObjectType

java.lang.Object
  extended by java.lang.Enum<IsoObjectType>
      extended by zombie.iso.SpriteDetails.IsoObjectType
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<IsoObjectType>

public enum IsoObjectType
extends java.lang.Enum<IsoObjectType>

Author:
LEMMY

Enum Constant Summary
curtainE
           
curtainN
           
curtainS
           
curtainW
           
doorFrN
           
doorFrW
           
doorN
           
doorW
           
dsadsadsadsa
           
jukebox
           
lightswitch
           
MAX
           
normal
           
radio
           
stairsBN
           
stairsBW
           
stairsMN
           
stairsMW
           
stairsTN
           
stairsTW
           
tree
           
wall
           
WestRoofB
           
WestRoofM
           
WestRoofT
           
windowFN
           
windowFW
           
windsdsdsowN
           
winsdsddowW
           
 
Method Summary
static IsoObjectType fromIndex(int value)
           
static IsoObjectType FromString(java.lang.String str)
           
 int index()
           
static IsoObjectType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IsoObjectType[] 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

normal

public static final IsoObjectType normal

jukebox

public static final IsoObjectType jukebox

wall

public static final IsoObjectType wall

stairsTW

public static final IsoObjectType stairsTW

stairsTN

public static final IsoObjectType stairsTN

stairsMW

public static final IsoObjectType stairsMW

stairsMN

public static final IsoObjectType stairsMN

stairsBW

public static final IsoObjectType stairsBW

stairsBN

public static final IsoObjectType stairsBN

winsdsddowW

public static final IsoObjectType winsdsddowW

windsdsdsowN

public static final IsoObjectType windsdsdsowN

doorW

public static final IsoObjectType doorW

doorN

public static final IsoObjectType doorN

lightswitch

public static final IsoObjectType lightswitch

radio

public static final IsoObjectType radio

curtainN

public static final IsoObjectType curtainN

curtainS

public static final IsoObjectType curtainS

curtainW

public static final IsoObjectType curtainW

curtainE

public static final IsoObjectType curtainE

doorFrW

public static final IsoObjectType doorFrW

doorFrN

public static final IsoObjectType doorFrN

tree

public static final IsoObjectType tree

windowFN

public static final IsoObjectType windowFN

windowFW

public static final IsoObjectType windowFW

dsadsadsadsa

public static final IsoObjectType dsadsadsadsa

WestRoofB

public static final IsoObjectType WestRoofB

WestRoofM

public static final IsoObjectType WestRoofM

WestRoofT

public static final IsoObjectType WestRoofT

MAX

public static final IsoObjectType MAX
Method Detail

values

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

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

valueOf

public static IsoObjectType 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 name
java.lang.NullPointerException - if the argument is null

index

public int index()

fromIndex

public static IsoObjectType fromIndex(int value)

FromString

public static IsoObjectType FromString(java.lang.String str)