|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<JobBase.JobStatusType>
org.peace_tools.workspace.JobBase.JobStatusType
public static enum JobBase.JobStatusType
Different enumerations defining the last known runtime status of a given Job. These enumerations were introduced to reflect those used in the XML and to ensure that the code is overall more readable.
| Enum Constant Summary | |
|---|---|
FAILED
The job has completed running but error(s) c |
|
FINISHING
The job has finished running and the GUI is downloading data files and status information from the server. |
|
QUEUED
The job has been queued for running, but it has not yet started running. |
|
RUNNING
The job has got CPU time and is currently running. |
|
STARTING
This status indicates that the GUI is making attempt to start the job. |
|
SUCCESS
The job has completed running successfully and all the necessary data files are already available in this workspace. |
|
| Method Summary | |
|---|---|
static JobBase.JobStatusType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static JobBase.JobStatusType[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, 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 JobBase.JobStatusType STARTING
public static final JobBase.JobStatusType QUEUED
public static final JobBase.JobStatusType RUNNING
public static final JobBase.JobStatusType FINISHING
public static final JobBase.JobStatusType SUCCESS
public static final JobBase.JobStatusType FAILED
| Method Detail |
|---|
public static JobBase.JobStatusType[] values()
for (JobBase.JobStatusType c : JobBase.JobStatusType.values()) System.out.println(c);
public static JobBase.JobStatusType 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 name
java.lang.NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||