public static enum ChatMessage.ChatType extends Enum<ChatMessage.ChatType>
| Modifier and Type | Method and Description |
|---|---|
static ChatMessage.ChatType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChatMessage.ChatType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChatMessage.ChatType GAME
public static final ChatMessage.ChatType TEAM
public static final ChatMessage.ChatType UNKNOWN
public static ChatMessage.ChatType[] values()
for (ChatMessage.ChatType c : ChatMessage.ChatType.values()) System.out.println(c);
public static ChatMessage.ChatType 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 © 2017. All rights reserved.