public static enum TerminatedActivityState.TerminatedState extends java.lang.Enum<TerminatedActivityState.TerminatedState>
| Enum Constant and Description |
|---|
CLOSED
The activity has terminated and is closed now.
|
FAILED
The component for the activity has failed.
|
RESET
The activity has been reset.
|
SIGNALLED
The activity has been sent a signal and it has terminated due to this
signal.
|
SUSPENDED
The activity has suspended.
|
| Modifier and Type | Method and Description |
|---|---|
static TerminatedActivityState.TerminatedState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static TerminatedActivityState.TerminatedState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TerminatedActivityState.TerminatedState CLOSED
public static final TerminatedActivityState.TerminatedState SUSPENDED
public static final TerminatedActivityState.TerminatedState RESET
public static final TerminatedActivityState.TerminatedState SIGNALLED
public static final TerminatedActivityState.TerminatedState FAILED
public static TerminatedActivityState.TerminatedState[] values()
for (TerminatedActivityState.TerminatedState c : TerminatedActivityState.TerminatedState.values()) System.out.println(c);
public static TerminatedActivityState.TerminatedState 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 null