public enum ActivityState extends Enum<ActivityState>
| Enum Constant and Description |
|---|
ABORTED
L'activité a été annulée
|
ERROR
L'activité a terminé en erreur
|
EXECUTING
L'activité est en cours d'exécution ou de terminate
|
FINISHED
L'activité a terminé sans erreur
|
INITIAL
État initial lorsque l'activité est créée
|
SUSPENDED
L'activité a été suspendue car elle est en attente de données
|
WAIT_ON_CHILDREN
L'activité doit attendre que les enfants soient finis
|
| Modifier and Type | Method and Description |
|---|---|
static ActivityState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ActivityState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ActivityState INITIAL
public static final ActivityState EXECUTING
public static final ActivityState SUSPENDED
public static final ActivityState WAIT_ON_CHILDREN
public static final ActivityState FINISHED
public static final ActivityState ERROR
public static final ActivityState ABORTED
public static ActivityState[] values()
for (ActivityState c : ActivityState.values()) System.out.println(c);
public static ActivityState 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 © 2018 Pivotal Software, Inc.. All rights reserved.