public static enum PluginMessage.Event extends java.lang.Enum<PluginMessage.Event>
Enum Constant | Description |
---|---|
INSTALLED |
Plugin wurde installiert.
|
UNINSTALLED |
Plugin wurde deinstalliert.
|
UPDATED |
Plugin wurde aktualisiert.
|
Modifier and Type | Method | Description |
---|---|---|
static PluginMessage.Event |
valueOf(java.lang.String name) |
Returns the enum constant of this type with the specified name.
|
static PluginMessage.Event[] |
values() |
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PluginMessage.Event UNINSTALLED
public static final PluginMessage.Event INSTALLED
public static final PluginMessage.Event UPDATED
public static PluginMessage.Event[] values()
for (PluginMessage.Event c : PluginMessage.Event.values()) System.out.println(c);
public static PluginMessage.Event 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