public static enum JobStatus.Status extends java.lang.Enum<JobStatus.Status>
| Enum Constant and Description |
|---|
CANCELLED
The job was cancelled.
|
ERROR
There was an error executing the job.
|
FINISHED
The job has finished processing.
|
RUNNING
The job is currently being processed.
|
WAITING
The job hasn't yet started processing.
|
| Modifier and Type | Method and Description |
|---|---|
static JobStatus.Status |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static JobStatus.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final JobStatus.Status WAITING
public static final JobStatus.Status RUNNING
public static final JobStatus.Status FINISHED
public static final JobStatus.Status CANCELLED
public static final JobStatus.Status ERROR
public static JobStatus.Status[] values()
for (JobStatus.Status c : JobStatus.Status.values()) System.out.println(c);
public static JobStatus.Status 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 null