public static enum JpsStartup.RuntimeState extends java.lang.Enum<JpsStartup.RuntimeState>
| Enum Constant and Description | 
|---|
| ACTIVE | 
| FAILURE | 
| INACTIVE | 
| INITIALIZING | 
| UNINITIALIZED | 
| Modifier and Type | Method and Description | 
|---|---|
| static JpsStartup.RuntimeState | valueOf(java.lang.String name)Returns the enum constant of this type with the specified name. | 
| static JpsStartup.RuntimeState[] | values()Returns an array containing the constants of this enum type, in the order they are declared. | 
public static final JpsStartup.RuntimeState INITIALIZING
public static final JpsStartup.RuntimeState UNINITIALIZED
public static final JpsStartup.RuntimeState FAILURE
public static final JpsStartup.RuntimeState ACTIVE
public static final JpsStartup.RuntimeState INACTIVE
public static JpsStartup.RuntimeState[] values()
for (JpsStartup.RuntimeState c : JpsStartup.RuntimeState.values())
    System.out.println(c);
public static JpsStartup.RuntimeState 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 namejava.lang.NullPointerException - if the argument is null