public enum TaskStatusData extends Enum<TaskStatusData>
Enum Constant and Description |
---|
ABORTED
The task has been aborted by an exception on an other task while the task is running.
|
FAILED
The task is failed
(only if max execution time has been reached and the node on which it was started is down).
|
FAULTY
The task has finished execution with error code (!=0) or exception.
|
FINISHED
The task has finished execution.
|
IN_ERROR |
NOT_RESTARTED
The task could not be restarted.
It means that the task could not be restarted after an error during the previous execution |
NOT_STARTED
The task could not be started.
It means that the task could not be started due to dependences failure. |
PAUSED
The task is paused.
|
PENDING
The task is in the scheduler pending queue.
|
RUNNING
The task is executing.
|
SKIPPED
The task was not executed: it was the non-selected branch of an IF/ELSE control flow action
|
SUBMITTED
The task has just been submitted by the user.
|
WAITING_ON_ERROR
The task is waiting for restart after an error.
|
WAITING_ON_FAILURE
The task is waiting for restart after a failure.
|
Modifier and Type | Method and Description |
---|---|
static TaskStatusData |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TaskStatusData[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TaskStatusData SUBMITTED
public static final TaskStatusData PENDING
public static final TaskStatusData PAUSED
public static final TaskStatusData RUNNING
public static final TaskStatusData WAITING_ON_ERROR
public static final TaskStatusData WAITING_ON_FAILURE
public static final TaskStatusData FAILED
public static final TaskStatusData NOT_STARTED
public static final TaskStatusData NOT_RESTARTED
public static final TaskStatusData ABORTED
public static final TaskStatusData FAULTY
public static final TaskStatusData FINISHED
public static final TaskStatusData SKIPPED
public static final TaskStatusData IN_ERROR
TaskStatus.IN_ERROR
public static TaskStatusData[] values()
for (TaskStatusData c : TaskStatusData.values()) System.out.println(c);
public static TaskStatusData 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 null