public enum NewSetupWizard extends java.lang.Enum<NewSetupWizard>
| Enum Constant and Description |
|---|
BASIC_STEP |
CONVERT_STEP |
CURRENCY_STEP |
DATABASE_STEP |
| Modifier and Type | Method and Description |
|---|---|
static NewSetupWizard |
getState()
Retrieve the Wizard state.
|
static void |
setState(NewSetupWizard newState)
Set the wizard state.
|
static NewSetupWizard |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NewSetupWizard[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NewSetupWizard DATABASE_STEP
public static final NewSetupWizard BASIC_STEP
public static final NewSetupWizard CURRENCY_STEP
public static final NewSetupWizard CONVERT_STEP
public static NewSetupWizard[] values()
for (NewSetupWizard c : NewSetupWizard.values()) System.out.println(c);
public static NewSetupWizard valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static void setState(NewSetupWizard newState)
newState - The new state to set to.public static NewSetupWizard getState()