zombie.ui
Enum TutorialManager.Stage

java.lang.Object
  extended by java.lang.Enum<TutorialManager.Stage>
      extended by zombie.ui.TutorialManager.Stage
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<TutorialManager.Stage>
Enclosing class:
TutorialManager

public static enum TutorialManager.Stage
extends java.lang.Enum<TutorialManager.Stage>


Enum Constant Summary
Alarm
           
Apply
           
BoardUpHouse
           
BreakBarricade
           
Distraction
           
EquipHammer
           
Escape
           
ExploreHouse
           
FindFood
           
FindShed
           
getBelt
           
getShedItems
           
getSoupIngredients
           
InHouseFood
           
InvestigateSound
           
KillZombie
           
LightStove
           
MakeSoupPot
           
Mouseover
           
RipSheet
           
ShouldBeOk
           
StockUp
           
 
Method Summary
static TutorialManager.Stage valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static TutorialManager.Stage[] 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

getBelt

public static final TutorialManager.Stage getBelt

RipSheet

public static final TutorialManager.Stage RipSheet

Apply

public static final TutorialManager.Stage Apply

FindShed

public static final TutorialManager.Stage FindShed

getShedItems

public static final TutorialManager.Stage getShedItems

EquipHammer

public static final TutorialManager.Stage EquipHammer

BoardUpHouse

public static final TutorialManager.Stage BoardUpHouse

FindFood

public static final TutorialManager.Stage FindFood

InHouseFood

public static final TutorialManager.Stage InHouseFood

KillZombie

public static final TutorialManager.Stage KillZombie

StockUp

public static final TutorialManager.Stage StockUp

ExploreHouse

public static final TutorialManager.Stage ExploreHouse

BreakBarricade

public static final TutorialManager.Stage BreakBarricade

getSoupIngredients

public static final TutorialManager.Stage getSoupIngredients

MakeSoupPot

public static final TutorialManager.Stage MakeSoupPot

LightStove

public static final TutorialManager.Stage LightStove

Distraction

public static final TutorialManager.Stage Distraction

InvestigateSound

public static final TutorialManager.Stage InvestigateSound

Alarm

public static final TutorialManager.Stage Alarm

Mouseover

public static final TutorialManager.Stage Mouseover

Escape

public static final TutorialManager.Stage Escape

ShouldBeOk

public static final TutorialManager.Stage ShouldBeOk
Method Detail

values

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

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

valueOf

public static TutorialManager.Stage 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