|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||
java.lang.Objectjava.lang.Enum<PluginState>
com.atlassian.plugin.PluginState
public enum PluginState
Represents the state of the plugin
| Enum Constant Summary | |
|---|---|
DISABLED
The plugin has been disabled |
|
DISABLING
The plugin is in the process of being disabled |
|
ENABLED
The plugin has been enabled |
|
ENABLING
The plugin is in the process of being enabled |
|
INSTALLED
The plugin has been installed into the plugin system |
|
PENDING
A marker value to indicate that a state change is pending. |
|
UNINSTALLED
The plugin has been uninstalled and should be unavailable |
|
| Method Summary | |
|---|---|
static PluginState |
valueOf(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. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
public static final PluginState INSTALLED
public static final PluginState ENABLING
public static final PluginState ENABLED
public static final PluginState DISABLING
public static final PluginState DISABLED
public static final PluginState UNINSTALLED
public static final PluginState PENDING
Plugin.getPluginState(). It is used by helper
functions returning PluginState to report special cases.
| Method Detail |
|---|
public static PluginState[] values()
for (PluginState c : PluginState.values()) System.out.println(c);
public static PluginState valueOf(String name)
name - the name of the enum constant to be returned.
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | |||||||||