public static enum ScriptLoader.LoaderStage extends java.lang.Enum<ScriptLoader.LoaderStage>
Enum Constant and Description |
---|
ERROR |
INVALIDATED |
LOADED_SUCCESSFUL |
LOADING |
NOT_LOADED |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static ScriptLoader.LoaderStage |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ScriptLoader.LoaderStage[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ScriptLoader.LoaderStage NOT_LOADED
public static final ScriptLoader.LoaderStage LOADING
public static final ScriptLoader.LoaderStage LOADED_SUCCESSFUL
public static final ScriptLoader.LoaderStage ERROR
public static final ScriptLoader.LoaderStage INVALIDATED
public static final ScriptLoader.LoaderStage UNKNOWN
public static ScriptLoader.LoaderStage[] values()
for (ScriptLoader.LoaderStage c : ScriptLoader.LoaderStage.values()) System.out.println(c);
public static ScriptLoader.LoaderStage 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