jrworkspace by
jTEM

de.jtem.jrworkspace.plugin.simplecontroller
Enum SimpleController.Status

java.lang.Object
  extended by java.lang.Enum<SimpleController.Status>
      extended by de.jtem.jrworkspace.plugin.simplecontroller.SimpleController.Status
All Implemented Interfaces:
Serializable, Comparable<SimpleController.Status>
Enclosing class:
SimpleController

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


Enum Constant Summary
PreStartup
           
Started
           
Starting
           
 
Method Summary
static SimpleController.Status valueOf(String name)
          Returns the enum constant of this type with the specified name.
static SimpleController.Status[] 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

PreStartup

public static final SimpleController.Status PreStartup

Started

public static final SimpleController.Status Started

Starting

public static final SimpleController.Status Starting
Method Detail

valueOf

public static SimpleController.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

values

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

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

jrworkspace by
jTEM

jTEM