public enum JobStatusType extends Enum<JobStatusType>
| Enum Constant and Description |
|---|
STATUS_CANCELLED
The job has been cancelled.
|
STATUS_CANCELLING
The job is in the process of being cancelled.
|
STATUS_DELETED
The job has been deleted.
|
STATUS_DELETING
The job is in the process of being deleted.
|
STATUS_EXECUTING
The job is being executed by job processor.
|
STATUS_FAILED
he job execution has failed.
|
STATUS_NEW
The job is new.
|
STATUS_SUBMITTED
The job is submitted for execution.
|
STATUS_SUCCEEDED
The job has completed successfully
|
STATUS_TIMED_OUT
The job execution has timed out.
|
STATUS_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 STATUS_CANCELLED
public static final JobStatusType STATUS_CANCELLING
public static final JobStatusType STATUS_DELETED
public static final JobStatusType STATUS_DELETING
public static final JobStatusType STATUS_EXECUTING
public static final JobStatusType STATUS_FAILED
public static final JobStatusType STATUS_NEW
public static final JobStatusType STATUS_SUBMITTED
public static final JobStatusType STATUS_SUCCEEDED
public static final JobStatusType STATUS_TIMED_OUT
public static final JobStatusType STATUS_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 © 2014. All Rights Reserved.