public enum WizardStepPanelState extends Enum<WizardStepPanelState>
Enum Constant and Description |
---|
COMPLETE |
INCOMPLETE |
NOT_ALLOWED |
SKIPPED |
Modifier and Type | Method and Description |
---|---|
static WizardStepPanelState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WizardStepPanelState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WizardStepPanelState SKIPPED
public static final WizardStepPanelState NOT_ALLOWED
public static final WizardStepPanelState INCOMPLETE
public static final WizardStepPanelState COMPLETE
public static WizardStepPanelState[] values()
for (WizardStepPanelState c : WizardStepPanelState.values()) System.out.println(c);
public static WizardStepPanelState valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant
with the specified nameNullPointerException
- if the argument is nullUniversity of Colorado Denver, Department of Biostatistics and Informatics