public enum JobStatusType extends Enum<JobStatusType>
| Enum Constant and Description |
|---|
CANCELLED
The job has been cancelled.
|
CANCELLING
The job is in the process of being cancelled.
|
DELETED
The job has been deleted.
|
DELETING
The job is in the process of being deleted.
|
EXECUTING
The job is being executed by job processor.
|
FAILED
he job execution has failed.
|
NEW
The job is new.
|
SUBMITTED
The job is submitted for execution.
|
SUCCEEDED
The job has completed successfully
|
TIMED_OUT
The job execution has timed out.
|
WAITING
The job is waiting for available job processor.
|
| Modifier and Type | Method and Description |
|---|---|
static JobStatusType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobStatusType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobStatusType CANCELLED
public static final JobStatusType CANCELLING
public static final JobStatusType DELETED
public static final JobStatusType DELETING
public static final JobStatusType EXECUTING
public static final JobStatusType FAILED
public static final JobStatusType NEW
public static final JobStatusType SUBMITTED
public static final JobStatusType SUCCEEDED
public static final JobStatusType TIMED_OUT
public static final JobStatusType WAITING
public static JobStatusType[] values()
for (JobStatusType c : JobStatusType.values()) System.out.println(c);
public static JobStatusType 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. All Rights Reserved.