public static enum LauncherModule.InitStatus extends java.lang.Enum<LauncherModule.InitStatus>
| Enum Constant and Description |
|---|
CREATED
When creating an object
|
FINISH |
INIT
During the initialization phase
|
INIT_WAIT
Awaiting initialization phase
|
PRE_INIT
During the pre-initialization phase
|
PRE_INIT_WAIT
After setting the context
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
isAvailable() |
static LauncherModule.InitStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static LauncherModule.InitStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LauncherModule.InitStatus CREATED
public static final LauncherModule.InitStatus PRE_INIT_WAIT
public static final LauncherModule.InitStatus PRE_INIT
public static final LauncherModule.InitStatus INIT_WAIT
public static final LauncherModule.InitStatus INIT
public static final LauncherModule.InitStatus FINISH
public static LauncherModule.InitStatus[] values()
for (LauncherModule.InitStatus c : LauncherModule.InitStatus.values()) System.out.println(c);
public static LauncherModule.InitStatus 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 nullpublic boolean isAvailable()