public enum PluginState extends java.lang.Enum<PluginState>
| Enum Constant and Description |
|---|
AVAILABLE
The initial state of a newly scanned plugin.
|
INITIALIZED
Initialized state of the plugin, at this state you can assume it is loaded, but not yet installed or started.
|
INSTALLED
The state when the plugin is being installed by the user.
|
STARTED
Self-explanatory name: When the plugin is running.
|
| Modifier and Type | Method and Description |
|---|---|
static PluginState |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PluginState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PluginState AVAILABLE
public static final PluginState INITIALIZED
public static final PluginState INSTALLED
public static final PluginState STARTED
public static PluginState[] values()
for (PluginState c : PluginState.values()) System.out.println(c);
public static PluginState 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