public enum JobStatusModelType extends Enum<JobStatusModelType>
| 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 JobStatusModelType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static JobStatusModelType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobStatusModelType CANCELLED
public static final JobStatusModelType CANCELLING
public static final JobStatusModelType DELETED
public static final JobStatusModelType DELETING
public static final JobStatusModelType EXECUTING
public static final JobStatusModelType FAILED
public static final JobStatusModelType NEW
public static final JobStatusModelType SUBMITTED
public static final JobStatusModelType SUCCEEDED
public static final JobStatusModelType TIMED_OUT
public static final JobStatusModelType WAITING
public static JobStatusModelType[] values()
for (JobStatusModelType c : JobStatusModelType.values()) System.out.println(c);
public static JobStatusModelType 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 © 2022. All rights reserved.