public enum ExtensionReloadMode extends java.lang.Enum<ExtensionReloadMode>
Enum Constant and Description |
---|
AUTO
Extension is reloaded automatically, when a change in the relative .jar file is detected
|
MANUAL
Extension is reloaded manually via the Admin Tool
|
NONE
Extension cannot be reloaded at runtime
|
Modifier and Type | Method and Description |
---|---|
static ExtensionReloadMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ExtensionReloadMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExtensionReloadMode AUTO
public static final ExtensionReloadMode MANUAL
public static final ExtensionReloadMode NONE
public static ExtensionReloadMode[] values()
for (ExtensionReloadMode c : ExtensionReloadMode.values()) System.out.println(c);
public static ExtensionReloadMode 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