public enum PluginInstallation extends java.lang.Enum<PluginInstallation>
| Enum Constant and Description |
|---|
ALL
All plugins
|
AVAILABLE
Plugins not loaded
|
INSTALLED
Plugins installed and loaded
|
| Modifier and Type | Method and Description |
|---|---|
static PluginInstallation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PluginInstallation[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PluginInstallation INSTALLED
public static final PluginInstallation AVAILABLE
public static final PluginInstallation ALL
public static PluginInstallation[] values()
for (PluginInstallation c : PluginInstallation.values()) System.out.println(c);
public static PluginInstallation 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