public enum PluginState extends Enum<PluginState>
| Enum Constant and Description |
|---|
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
|
| Modifier and Type | Method and Description |
|---|---|
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.
|
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.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 nameNullPointerException - if the argument is nullCopyright © 2019 Atlassian. All rights reserved.