public static enum StatementListenerEvent.ListenerEventType extends Enum<StatementListenerEvent.ListenerEventType>
Enum Constant and Description |
---|
LISTENER_ADD
listener added
|
LISTENER_REMOVE
Listener removed.
|
LISTENER_REMOVE_ALL
All listeners removed.
|
Modifier and Type | Method and Description |
---|---|
static StatementListenerEvent.ListenerEventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StatementListenerEvent.ListenerEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatementListenerEvent.ListenerEventType LISTENER_ADD
public static final StatementListenerEvent.ListenerEventType LISTENER_REMOVE
public static final StatementListenerEvent.ListenerEventType LISTENER_REMOVE_ALL
public static StatementListenerEvent.ListenerEventType[] values()
for (StatementListenerEvent.ListenerEventType c : StatementListenerEvent.ListenerEventType.values()) System.out.println(c);
public static StatementListenerEvent.ListenerEventType 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 nullCopyright © 2005–2020. All rights reserved.