net.bioclipse.xws.client.adhoc
Enum ProcessStatusCode

java.lang.Object
  extended by java.lang.Enum<ProcessStatusCode>
      extended by net.bioclipse.xws.client.adhoc.ProcessStatusCode
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<ProcessStatusCode>

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


Enum Constant Summary
EXECUTING
          The remote process was started.
FAILED
          The remote process failed.
FINISHED
          The remote process finished.
INITIALIZED
          The IProcess object representing the remote process was initialized.
 
Method Summary
static ProcessStatusCode valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static ProcessStatusCode[] 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

INITIALIZED

public static final ProcessStatusCode INITIALIZED
The IProcess object representing the remote process was initialized.


EXECUTING

public static final ProcessStatusCode EXECUTING
The remote process was started.


FINISHED

public static final ProcessStatusCode FINISHED
The remote process finished.


FAILED

public static final ProcessStatusCode FAILED
The remote process failed.

Method Detail

values

public static ProcessStatusCode[] 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 (ProcessStatusCode c : ProcessStatusCode.values())
    System.out.println(c);

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

valueOf

public static ProcessStatusCode 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