|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<JobStatus> compbio.metadata.JobStatus
public enum JobStatus
The status of the job.
Enum Constant Summary | |
---|---|
CANCELLED
Jobs that has been cancelled |
|
COLLECTED
Results has been collected |
|
FAILED
Failed jobs |
|
FINISHED
Finished jobs |
|
PENDING
Jobs which are in the queue and awaiting execution reported for cluster jobs only |
|
RUNNING
Jobs that are running |
|
STARTED
Job calculation has been started. |
|
SUBMITTED
Job has been submitted. |
|
UNDEFINED
Represents jobs with unknown status |
Method Summary | |
---|---|
static JobStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static JobStatus[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final JobStatus PENDING
public static final JobStatus RUNNING
public static final JobStatus CANCELLED
public static final JobStatus FINISHED
public static final JobStatus FAILED
public static final JobStatus UNDEFINED
public static final JobStatus STARTED
public static final JobStatus SUBMITTED
public static final JobStatus COLLECTED
Method Detail |
---|
public static JobStatus[] values()
for (JobStatus c : JobStatus.values()) System.out.println(c);
public static JobStatus valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |