startup.gui
Enum WizardFramework.WIZARD_STATE

java.lang.Object
  extended by java.lang.Enum<WizardFramework.WIZARD_STATE>
      extended by startup.gui.WizardFramework.WIZARD_STATE
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<WizardFramework.WIZARD_STATE>
Enclosing class:
WizardFramework

public static enum WizardFramework.WIZARD_STATE
extends java.lang.Enum<WizardFramework.WIZARD_STATE>


Enum Constant Summary
ACTIONS_BUILD
           
ACTIONS_USE
           
BUILD_OR_USE
           
FINAL_BUILD
           
FINAL_USE
           
SPECIES_BUILD
           
SPECIES_USE
           
 
Method Summary
static int getIndex(WizardFramework.WIZARD_STATE[] states, WizardFramework.WIZARD_STATE state)
           
static WizardFramework.WIZARD_STATE next(WizardFramework.WIZARD_STATE s)
           
static WizardFramework.WIZARD_STATE previous(WizardFramework.WIZARD_STATE s)
           
static WizardFramework.WIZARD_STATE valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static WizardFramework.WIZARD_STATE[] 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

BUILD_OR_USE

public static final WizardFramework.WIZARD_STATE BUILD_OR_USE

SPECIES_USE

public static final WizardFramework.WIZARD_STATE SPECIES_USE

SPECIES_BUILD

public static final WizardFramework.WIZARD_STATE SPECIES_BUILD

ACTIONS_USE

public static final WizardFramework.WIZARD_STATE ACTIONS_USE

ACTIONS_BUILD

public static final WizardFramework.WIZARD_STATE ACTIONS_BUILD

FINAL_USE

public static final WizardFramework.WIZARD_STATE FINAL_USE

FINAL_BUILD

public static final WizardFramework.WIZARD_STATE FINAL_BUILD
Method Detail

values

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

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

valueOf

public static WizardFramework.WIZARD_STATE 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

previous

public static WizardFramework.WIZARD_STATE previous(WizardFramework.WIZARD_STATE s)

next

public static WizardFramework.WIZARD_STATE next(WizardFramework.WIZARD_STATE s)

getIndex

public static int getIndex(WizardFramework.WIZARD_STATE[] states,
                           WizardFramework.WIZARD_STATE state)