public static enum Plugin.PluginState extends Enum<Plugin.PluginState>
| Enum Constant and Description | 
|---|
| ACTIVE | 
| STARTING | 
| STOPPED | 
| STOPPING | 
| UNINSTALLED | 
| Modifier and Type | Method and Description | 
|---|---|
| static Plugin.PluginState | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static Plugin.PluginState[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final Plugin.PluginState STARTING
public static final Plugin.PluginState ACTIVE
public static final Plugin.PluginState STOPPING
public static final Plugin.PluginState STOPPED
public static final Plugin.PluginState UNINSTALLED
public static Plugin.PluginState[] values()
for (Plugin.PluginState c : Plugin.PluginState.values()) System.out.println(c);
public static Plugin.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 © 2014 Suncode. All rights reserved.