public enum PluginStatus extends Enum<PluginStatus>
| Enum Constant and Description |
|---|
DISABLED
Indicates a plugin is disabled.
|
ENABLED
Indicates a plugin is enabled.
|
| Modifier and Type | Method and Description |
|---|---|
static PluginStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PluginStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PluginStatus ENABLED
public static final PluginStatus DISABLED
public static PluginStatus[] values()
for (PluginStatus c : PluginStatus.values()) System.out.println(c);
public static PluginStatus 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 © 2009–2019 B3log. All rights reserved.