public static enum Event.Type extends Enum<Event.Type>
Modifier and Type | Method and Description |
---|---|
static Event.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Event.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Event.Type REACTOR_INIT
public static final Event.Type REACTOR_QUIESCED
public static final Event.Type REACTOR_FINAL
public static final Event.Type TIMER_TASK
public static final Event.Type CONNECTION_INIT
public static final Event.Type CONNECTION_BOUND
public static final Event.Type CONNECTION_UNBOUND
public static final Event.Type CONNECTION_LOCAL_OPEN
public static final Event.Type CONNECTION_REMOTE_OPEN
public static final Event.Type CONNECTION_LOCAL_CLOSE
public static final Event.Type CONNECTION_REMOTE_CLOSE
public static final Event.Type CONNECTION_FINAL
public static final Event.Type SESSION_INIT
public static final Event.Type SESSION_LOCAL_OPEN
public static final Event.Type SESSION_REMOTE_OPEN
public static final Event.Type SESSION_LOCAL_CLOSE
public static final Event.Type SESSION_REMOTE_CLOSE
public static final Event.Type SESSION_FINAL
public static final Event.Type LINK_INIT
public static final Event.Type LINK_LOCAL_OPEN
public static final Event.Type LINK_REMOTE_OPEN
public static final Event.Type LINK_LOCAL_DETACH
public static final Event.Type LINK_REMOTE_DETACH
public static final Event.Type LINK_LOCAL_CLOSE
public static final Event.Type LINK_REMOTE_CLOSE
public static final Event.Type LINK_FLOW
public static final Event.Type LINK_FINAL
public static final Event.Type DELIVERY
public static final Event.Type TRANSPORT
public static final Event.Type TRANSPORT_ERROR
public static final Event.Type TRANSPORT_HEAD_CLOSED
public static final Event.Type TRANSPORT_TAIL_CLOSED
public static final Event.Type TRANSPORT_CLOSED
public static final Event.Type SELECTABLE_INIT
public static final Event.Type SELECTABLE_UPDATED
public static final Event.Type SELECTABLE_READABLE
public static final Event.Type SELECTABLE_WRITABLE
public static final Event.Type SELECTABLE_EXPIRED
public static final Event.Type SELECTABLE_ERROR
public static final Event.Type SELECTABLE_FINAL
public static Event.Type[] values()
for (Event.Type c : Event.Type.values()) System.out.println(c);
public static Event.Type 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 © 2016 The Apache Software Foundation. All rights reserved.