public static enum Event.Type extends Enum<Event.Type>
| Enum Constant and Description |
|---|
RECEIVED_EVENT |
RECEIVED_INITIAL |
RECEIVED_RAA |
RECEIVED_TERMINATE |
RECEIVED_UPDATE |
SENT_EVENT_RESPONSE |
SENT_INITIAL_RESPONSE |
SENT_RAR |
SENT_TERMINATE_RESPONSE |
SENT_UPDATE_RESPONSE |
| 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 RECEIVED_EVENT
public static final Event.Type SENT_EVENT_RESPONSE
public static final Event.Type RECEIVED_INITIAL
public static final Event.Type SENT_INITIAL_RESPONSE
public static final Event.Type RECEIVED_UPDATE
public static final Event.Type SENT_UPDATE_RESPONSE
public static final Event.Type RECEIVED_TERMINATE
public static final Event.Type SENT_TERMINATE_RESPONSE
public static final Event.Type SENT_RAR
public static final Event.Type RECEIVED_RAA
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. All Rights Reserved.