public static enum PluginsManager.Status extends Enum<PluginsManager.Status>
Enum Constant and Description |
---|
CONFIG_INCOMPLETE
There was no errors, but the configuration is incomplete.
|
NO_CONFIG
There was no errors, but the configuration is missing.
|
NOT_INITIALIZED
There were issues during components loading.
|
OK
Everything is ok.
|
RUNTIME_NOT_LOADED
The runtime.xml could not be loaded.
|
SAFE_MODE_FORCED
Safe mode has been forced.
|
WRONG_DEFINITIONS
Something was wrong when reading plugins definitions.
|
Modifier and Type | Method and Description |
---|---|
static PluginsManager.Status |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PluginsManager.Status[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PluginsManager.Status OK
public static final PluginsManager.Status NO_CONFIG
public static final PluginsManager.Status CONFIG_INCOMPLETE
public static final PluginsManager.Status WRONG_DEFINITIONS
public static final PluginsManager.Status NOT_INITIALIZED
public static final PluginsManager.Status RUNTIME_NOT_LOADED
public static final PluginsManager.Status SAFE_MODE_FORCED
public static PluginsManager.Status[] values()
for (PluginsManager.Status c : PluginsManager.Status.values()) System.out.println(c);
public static PluginsManager.Status valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null