public static enum PluginEvent.EventType extends java.lang.Enum<PluginEvent.EventType>
Enum Constant and Description |
---|
READER_CONNECTED
A reader has been connected.
|
READER_DISCONNECTED
A reader has been disconnected.
|
UNREGISTERED
This plugin has been unregistered
|
Modifier and Type | Method and Description |
---|---|
static PluginEvent.EventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PluginEvent.EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PluginEvent.EventType READER_CONNECTED
public static final PluginEvent.EventType READER_DISCONNECTED
public static final PluginEvent.EventType UNREGISTERED
public static PluginEvent.EventType[] values()
for (PluginEvent.EventType c : PluginEvent.EventType.values()) System.out.println(c);
public static PluginEvent.EventType 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