public enum PluginState extends Enum<PluginState>
| Enum Constant and Description |
|---|
DISABLED
Inactive in the system, can be activated without restart.
|
ENABLED
Active in the system.
|
ENABLING
Inactive in the system, will be activated after restart.
|
TEMPORARY
Inactive in the system, cannot be activated without restart.
|
UNKNOWN
Transitional state, after system restart before database synchronization.
|
| 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 DISABLED
public static final PluginState ENABLED
public static final PluginState ENABLING
public static final PluginState TEMPORARY
public static final PluginState UNKNOWN
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 nullpublic static PluginState[] values()
for (PluginState c : PluginState.values()) System.out.println(c);
Copyright © 2010-2025 Qcadoo Limited