public static enum Event.EventType extends Enum<Event.EventType>
EventType indicates type of the event allowing the default
Event implementation to be used for multiple event types.| Modifier and Type | Method and Description |
|---|---|
static Event.EventType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Event.EventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Event.EventType CONNECTION_CONNECT
public static final Event.EventType CONNECTION_CLOSE
public static final Event.EventType STREAM_START
public static final Event.EventType STREAM_RESTART
public static final Event.EventType ROSTER_RECEIVE
public static final Event.EventType ROSTER_UPDATE
public static final Event.EventType CHAT_ROOM_SUBJECT_UPDATE
public static final Event.EventType CHAT_ROOM_MEMBER_UPDATE
public static final Event.EventType CHAT_ROOM_RECEIVE
public static final Event.EventType SERVER_ACK_RECEIVED
public static final Event.EventType MESSAGE_DELIVERED
public static final Event.EventType MEDIA_TRANSFERING
public static final Event.EventType MEDIA_SENT_TO_SERVER
public static final Event.EventType MEDIA_TRANSFER_FAILED
public static final Event.EventType MEDIA_RETRIVAL_FAILED
public static final Event.EventType MEDIA_RETRIVAL_PRCESSESED
public static final Event.EventType MEDIA_RECEIVED
public static final Event.EventType ERROR
public static Event.EventType[] values()
for (Event.EventType c : Event.EventType.values()) System.out.println(c);
public static Event.EventType 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 © 2019. All rights reserved.