public static enum StateChange.StageActivationState extends Enum<StateChange.StageActivationState>
| Enum Constant and Description |
|---|
ACTIVE
Represents the state where the stage is being executed.
|
BLOCKED
Represents the state where the stage is waiting for its active successor stage to consume the elements within the interconnected pipe.
|
INITIALIZED
Represents the state where the stage has been initialized, but not yet been executed.
|
TERMINATED
Represents the stage where the stage has been terminated.
|
| Modifier and Type | Method and Description |
|---|---|
static StateChange.StageActivationState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StateChange.StageActivationState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StateChange.StageActivationState INITIALIZED
this.lastState == null.public static final StateChange.StageActivationState ACTIVE
public static final StateChange.StageActivationState BLOCKED
public static final StateChange.StageActivationState TERMINATED
public static StateChange.StageActivationState[] values()
for (StateChange.StageActivationState c : StateChange.StageActivationState.values()) System.out.println(c);
public static StateChange.StageActivationState 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 © 2015–2020. All rights reserved.