public static enum ChatMessage.Type extends Enum<ChatMessage.Type>
| Enum Constant and Description |
|---|
ADDEDMEMBERS |
CREATEDCHATWITH |
EMOTED |
GAP_IN_CHAT |
JOINEDASAPPLICANT |
KICKBANNED |
KICKED |
LEFT |
POSTEDCONTACTS |
SAID |
SAWMEMBERS |
SETGUIDELINES |
SETOPTIONS |
SETPICTURE |
SETROLE |
SETTOPIC |
UNKNOWN |
| Modifier and Type | Method and Description |
|---|---|
static ChatMessage.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChatMessage.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChatMessage.Type SETTOPIC
public static final ChatMessage.Type SAID
public static final ChatMessage.Type ADDEDMEMBERS
public static final ChatMessage.Type SAWMEMBERS
public static final ChatMessage.Type CREATEDCHATWITH
public static final ChatMessage.Type LEFT
public static final ChatMessage.Type POSTEDCONTACTS
public static final ChatMessage.Type GAP_IN_CHAT
public static final ChatMessage.Type SETROLE
public static final ChatMessage.Type KICKED
public static final ChatMessage.Type KICKBANNED
public static final ChatMessage.Type SETOPTIONS
public static final ChatMessage.Type SETPICTURE
public static final ChatMessage.Type SETGUIDELINES
public static final ChatMessage.Type JOINEDASAPPLICANT
public static final ChatMessage.Type EMOTED
public static final ChatMessage.Type UNKNOWN
public static ChatMessage.Type[] values()
for (ChatMessage.Type c : ChatMessage.Type.values()) System.out.println(c);
public static ChatMessage.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 © 2013. All Rights Reserved.