public static enum Message.Type extends java.lang.Enum<Message.Type>
| Enum Constant and Description |
|---|
chat
Typically short text message used in line-by-line chat interfaces.
|
error
indicates a messaging error.
|
groupchat
Chat message sent to a groupchat server for group chats.
|
headline
Text message to be displayed in scrolling marquee displays.
|
normal
(Default) a normal text message used in email like interface.
|
| Modifier and Type | Method and Description |
|---|---|
static Message.Type |
fromString(java.lang.String string)
Converts a String into the corresponding types.
|
static Message.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Message.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Message.Type normal
public static final Message.Type chat
public static final Message.Type groupchat
public static final Message.Type headline
public static final Message.Type error
public static Message.Type[] values()
for (Message.Type c : Message.Type.values()) System.out.println(c);
public static Message.Type 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 static Message.Type fromString(java.lang.String string)
string - the String value to covert.java.lang.IllegalArgumentException - when not able to parse the string parameterjava.lang.NullPointerException - if the string is null