Java2OWL
Enum J2OManager.Status

Object
  extended by Enum<J2OManager.Status>
      extended by J2OManager.Status
All Implemented Interfaces:
Serializable, Comparable<J2OManager.Status>
Enclosing class:
J2OManager

public static enum J2OManager.Status
extends Enum<J2OManager.Status>

The system can be in different statuses.


Enum Constant Summary
COMPILE
          No individual manager is necessary.
RUN
          All managers are necessary.
 
Method Summary
static J2OManager.Status valueOf(String name)
          Returns the enum constant of this type with the specified name.
static J2OManager.Status[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

COMPILE

public static final J2OManager.Status COMPILE
No individual manager is necessary.


RUN

public static final J2OManager.Status RUN
All managers are necessary.

Method Detail

values

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

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

valueOf

public static J2OManager.Status valueOf(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:
IllegalArgumentException - if this enum type has no constant with the specified name
NullPointerException - if the argument is null