public enum ExternalSystemTaskState extends java.lang.Enum<ExternalSystemTaskState>
Enum Constant and Description |
---|
CANCELED |
CANCELING |
CANCELLATION_FAILED |
FAILED |
FINISHED |
IN_PROGRESS |
NOT_STARTED |
Modifier and Type | Method and Description |
---|---|
boolean |
isStopped() |
static ExternalSystemTaskState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExternalSystemTaskState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExternalSystemTaskState NOT_STARTED
public static final ExternalSystemTaskState IN_PROGRESS
public static final ExternalSystemTaskState FINISHED
public static final ExternalSystemTaskState FAILED
public static final ExternalSystemTaskState CANCELING
public static final ExternalSystemTaskState CANCELED
public static final ExternalSystemTaskState CANCELLATION_FAILED
public static ExternalSystemTaskState[] values()
for (ExternalSystemTaskState c : ExternalSystemTaskState.values()) System.out.println(c);
public static ExternalSystemTaskState 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 nullpublic boolean isStopped()