edu.jhu.ece.iacl.jist.processcontrol
Enum ProcessStatus

java.lang.Object
  extended by java.lang.Enum<ProcessStatus>
      extended by edu.jhu.ece.iacl.jist.processcontrol.ProcessStatus
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ProcessStatus>

public enum ProcessStatus
extends java.lang.Enum<ProcessStatus>

The Enum ProcessStatus.


Enum Constant Summary
DONE
          The DONE.
FAILED
          The FAILED.
QUEUED_ACTIVE
          The QUEUE d_ active.
READY
          The READY.
RUNNING
          The RUNNING.
SYSTEM_ON_HOLD
          The SYSTE m_ o n_ hold.
SYSTEM_SUSPENDED
          The SYSTE m_ suspended.
UNDETERMINE
          The UNDETERMINE.
USER_ON_HOLD
          The USE r_ o n_ hold.
USER_SUSPENDED
          The USE r_ suspended.
USER_SYSTEM_ON_HOLD
          The USE r_ syste m_ o n_ hold.
USER_SYSTEM_SUSPENDED
          The USE r_ syste m_ suspended.
 
Method Summary
static ProcessStatus valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ProcessStatus[] 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

READY

public static final ProcessStatus READY
The READY.


QUEUED_ACTIVE

public static final ProcessStatus QUEUED_ACTIVE
The QUEUE d_ active.


SYSTEM_ON_HOLD

public static final ProcessStatus SYSTEM_ON_HOLD
The SYSTE m_ o n_ hold.


USER_ON_HOLD

public static final ProcessStatus USER_ON_HOLD
The USE r_ o n_ hold.


USER_SYSTEM_ON_HOLD

public static final ProcessStatus USER_SYSTEM_ON_HOLD
The USE r_ syste m_ o n_ hold.


RUNNING

public static final ProcessStatus RUNNING
The RUNNING.


SYSTEM_SUSPENDED

public static final ProcessStatus SYSTEM_SUSPENDED
The SYSTE m_ suspended.


USER_SUSPENDED

public static final ProcessStatus USER_SUSPENDED
The USE r_ suspended.


USER_SYSTEM_SUSPENDED

public static final ProcessStatus USER_SYSTEM_SUSPENDED
The USE r_ syste m_ suspended.


DONE

public static final ProcessStatus DONE
The DONE.


FAILED

public static final ProcessStatus FAILED
The FAILED.


UNDETERMINE

public static final ProcessStatus UNDETERMINE
The UNDETERMINE.

Method Detail

values

public static ProcessStatus[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:
for (ProcessStatus c : ProcessStatus.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static ProcessStatus valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Parameters:
name - the name of the enum constant to be returned.
Returns:
the enum constant with the specified name
Throws:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null