zombie.iso.SpriteDetails
Enum IsoFlagType

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

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

Author:
LEMMY

Enum Constant Summary
alwaysDraw
           
attachtostairs
           
bed
           
blocksight
           
blueprint
           
burning
           
burntOut
           
canPathN
           
canPathW
           
climbSheetE
           
climbSheetN
           
climbSheetS
           
climbSheetTopE
           
climbSheetTopN
           
climbSheetTopS
           
climbSheetTopW
           
climbSheetW
           
collideN
           
collideW
           
cutN
           
cutW
           
doorN
           
doorW
           
exterior
           
floorE
           
FloorOverlay
           
floorS
           
halfheight
           
HasRaindrop
           
HasRainSplashes
           
hidewalls
           
HoppableN
           
HoppableW
           
invisible
           
MAX
           
noStart
           
ontable
           
pushable
           
sheetCurtains
           
shelfE
           
shelfS
           
sledgesmash
           
solid
           
solidfloor
           
solidtrans
           
tableE
           
tableN
           
tableNE
           
tableNW
           
tableS
           
tableSE
           
tableSW
           
tableW
           
trans
           
transparentN
           
transparentW
           
unflamable
           
unused
           
vegitation
           
WallOverlay
           
waterPiped
           
windowN
           
windowW
           
 
Method Summary
static IsoFlagType fromIndex(int value)
           
static IsoFlagType FromString(java.lang.String str)
           
 int index()
           
static IsoFlagType valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static IsoFlagType[] 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

collideW

public static final IsoFlagType collideW

collideN

public static final IsoFlagType collideN

solidfloor

public static final IsoFlagType solidfloor

noStart

public static final IsoFlagType noStart

windowW

public static final IsoFlagType windowW

windowN

public static final IsoFlagType windowN

hidewalls

public static final IsoFlagType hidewalls

exterior

public static final IsoFlagType exterior

unused

public static final IsoFlagType unused

doorW

public static final IsoFlagType doorW

doorN

public static final IsoFlagType doorN

transparentW

public static final IsoFlagType transparentW

transparentN

public static final IsoFlagType transparentN

WallOverlay

public static final IsoFlagType WallOverlay

FloorOverlay

public static final IsoFlagType FloorOverlay

vegitation

public static final IsoFlagType vegitation

burning

public static final IsoFlagType burning

burntOut

public static final IsoFlagType burntOut

unflamable

public static final IsoFlagType unflamable

cutW

public static final IsoFlagType cutW

cutN

public static final IsoFlagType cutN

tableN

public static final IsoFlagType tableN

tableNW

public static final IsoFlagType tableNW

tableW

public static final IsoFlagType tableW

tableSW

public static final IsoFlagType tableSW

tableS

public static final IsoFlagType tableS

tableSE

public static final IsoFlagType tableSE

tableE

public static final IsoFlagType tableE

tableNE

public static final IsoFlagType tableNE

halfheight

public static final IsoFlagType halfheight

HasRainSplashes

public static final IsoFlagType HasRainSplashes

HasRaindrop

public static final IsoFlagType HasRaindrop

solid

public static final IsoFlagType solid

trans

public static final IsoFlagType trans

pushable

public static final IsoFlagType pushable

solidtrans

public static final IsoFlagType solidtrans

invisible

public static final IsoFlagType invisible

floorS

public static final IsoFlagType floorS

floorE

public static final IsoFlagType floorE

shelfS

public static final IsoFlagType shelfS

shelfE

public static final IsoFlagType shelfE

alwaysDraw

public static final IsoFlagType alwaysDraw

ontable

public static final IsoFlagType ontable

sledgesmash

public static final IsoFlagType sledgesmash

climbSheetW

public static final IsoFlagType climbSheetW

climbSheetN

public static final IsoFlagType climbSheetN

climbSheetTopN

public static final IsoFlagType climbSheetTopN

climbSheetTopW

public static final IsoFlagType climbSheetTopW

attachtostairs

public static final IsoFlagType attachtostairs

sheetCurtains

public static final IsoFlagType sheetCurtains

waterPiped

public static final IsoFlagType waterPiped

HoppableN

public static final IsoFlagType HoppableN

HoppableW

public static final IsoFlagType HoppableW

bed

public static final IsoFlagType bed

blueprint

public static final IsoFlagType blueprint

canPathW

public static final IsoFlagType canPathW

canPathN

public static final IsoFlagType canPathN

blocksight

public static final IsoFlagType blocksight

climbSheetE

public static final IsoFlagType climbSheetE

climbSheetS

public static final IsoFlagType climbSheetS

climbSheetTopE

public static final IsoFlagType climbSheetTopE

climbSheetTopS

public static final IsoFlagType climbSheetTopS

MAX

public static final IsoFlagType MAX
Method Detail

values

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

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

valueOf

public static IsoFlagType 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 IsoFlagType fromIndex(int value)

FromString

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