public enum EChatRoomServerMsg extends java.lang.Enum<EChatRoomServerMsg>
| Enum Constant and Description |
|---|
AppCustom |
ChatRoomAvatarChanged |
ChatRoomTaglineChanged |
Invalid |
Invited |
InviteDismissed |
Joined |
Kicked |
Parted |
RenameChatRoom |
| Modifier and Type | Method and Description |
|---|---|
int |
code() |
static EChatRoomServerMsg |
from(int code) |
static EChatRoomServerMsg |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EChatRoomServerMsg[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EChatRoomServerMsg Invalid
public static final EChatRoomServerMsg RenameChatRoom
public static final EChatRoomServerMsg Joined
public static final EChatRoomServerMsg Parted
public static final EChatRoomServerMsg Kicked
public static final EChatRoomServerMsg Invited
public static final EChatRoomServerMsg InviteDismissed
public static final EChatRoomServerMsg ChatRoomTaglineChanged
public static final EChatRoomServerMsg ChatRoomAvatarChanged
public static final EChatRoomServerMsg AppCustom
public static EChatRoomServerMsg[] values()
for (EChatRoomServerMsg c : EChatRoomServerMsg.values()) System.out.println(c);
public static EChatRoomServerMsg 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 nullpublic int code()
public static EChatRoomServerMsg from(int code)