public static enum DatabaseLifecycleManager.State extends java.lang.Enum<DatabaseLifecycleManager.State>
Enum Constant and Description |
---|
BOOTING_ENGINE |
BOOTING_GENERAL_SERVICES |
BOOTING_SERVER |
NOT_STARTED |
RUNNING |
SHUTDOWN |
SHUTTING_DOWN |
STARTUP_FAILED |
Modifier and Type | Method and Description |
---|---|
static DatabaseLifecycleManager.State |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DatabaseLifecycleManager.State[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatabaseLifecycleManager.State NOT_STARTED
public static final DatabaseLifecycleManager.State BOOTING_ENGINE
public static final DatabaseLifecycleManager.State BOOTING_GENERAL_SERVICES
public static final DatabaseLifecycleManager.State BOOTING_SERVER
public static final DatabaseLifecycleManager.State STARTUP_FAILED
public static final DatabaseLifecycleManager.State RUNNING
public static final DatabaseLifecycleManager.State SHUTTING_DOWN
public static final DatabaseLifecycleManager.State SHUTDOWN
public static DatabaseLifecycleManager.State[] values()
for (DatabaseLifecycleManager.State c : DatabaseLifecycleManager.State.values()) System.out.println(c);
public static DatabaseLifecycleManager.State 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