public enum ReloadDecision extends java.lang.Enum<ReloadDecision>
Enum Constant and Description |
---|
NO
NO means the plugin thinks is should definetly not be reloadable
|
PASS
PASS means the plugin has no opinion, leave it to other plugins to decide
|
YES
YES means the plugin thinks it should definetly be reloadable
|
Modifier and Type | Method and Description |
---|---|
static ReloadDecision |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReloadDecision[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReloadDecision YES
public static final ReloadDecision NO
public static final ReloadDecision PASS
public static ReloadDecision[] values()
for (ReloadDecision c : ReloadDecision.values()) System.out.println(c);
public static ReloadDecision 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