public enum WizardState extends Enum<WizardState>
| Enum Constant and Description |
|---|
CANCELED
quand l'opération est annulé en cours d'exécution
|
FAILED
quand une erreur s'est produite pendant l'exécution
|
NEED_FIX
quand l'exécution s'est terminée mais requière des corrections
|
PENDING
quand l'opération n'a pas encore été réalisée
|
RUNNING
quand l'opération est en cours
|
SUCCESSED
quand l'exécution s'est terminée et ne requière pas de correction
|
| Modifier and Type | Method and Description |
|---|---|
static WizardState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static WizardState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final WizardState PENDING
public static final WizardState RUNNING
public static final WizardState CANCELED
public static final WizardState FAILED
public static final WizardState NEED_FIX
public static final WizardState SUCCESSED
public static WizardState[] values()
for (WizardState c : WizardState.values()) System.out.println(c);
public static WizardState 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 nullCopyright © 2008–2019 Ultreia.io. All rights reserved.