public static enum Job.JobStatus extends java.lang.Enum<Job.JobStatus>
Enum Constant and Description |
---|
FAILED |
PENDING |
RUNNING |
STOPPED |
SUCCEEDED |
Modifier and Type | Method and Description |
---|---|
static java.lang.String[] |
domain() |
static Job.JobStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Job.JobStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Job.JobStatus PENDING
public static final Job.JobStatus RUNNING
public static final Job.JobStatus SUCCEEDED
public static final Job.JobStatus STOPPED
public static final Job.JobStatus FAILED
public static Job.JobStatus[] values()
for (Job.JobStatus c : Job.JobStatus.values()) System.out.println(c);
public static Job.JobStatus 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 nullpublic static java.lang.String[] domain()