public static enum StatementLifecycleEvent.LifecycleEventType extends java.lang.Enum<StatementLifecycleEvent.LifecycleEventType>
Enum Constant and Description |
---|
CREATE
Statement created.
|
LISTENER_ADD
listener added
|
LISTENER_REMOVE
Listener removed.
|
LISTENER_REMOVE_ALL
All listeners removed.
|
STATECHANGE
Statement state change.
|
Modifier and Type | Method and Description |
---|---|
static StatementLifecycleEvent.LifecycleEventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static StatementLifecycleEvent.LifecycleEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StatementLifecycleEvent.LifecycleEventType CREATE
public static final StatementLifecycleEvent.LifecycleEventType STATECHANGE
public static final StatementLifecycleEvent.LifecycleEventType LISTENER_ADD
public static final StatementLifecycleEvent.LifecycleEventType LISTENER_REMOVE
public static final StatementLifecycleEvent.LifecycleEventType LISTENER_REMOVE_ALL
public static StatementLifecycleEvent.LifecycleEventType[] values()
for (StatementLifecycleEvent.LifecycleEventType c : StatementLifecycleEvent.LifecycleEventType.values()) System.out.println(c);
public static StatementLifecycleEvent.LifecycleEventType 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