public enum ChatMessageImportance extends java.lang.Enum<ChatMessageImportance>
| Enum Constant and Description |
|---|
HIGH
high
|
NORMAL
normal
|
UNEXPECTED_VALUE
For ChatMessageImportance values that were not expected from the service
|
UNKNOWN_FUTURE_VALUE
unknown Future Value
|
URGENT
urgent
|
| Modifier and Type | Method and Description |
|---|---|
static ChatMessageImportance |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChatMessageImportance[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChatMessageImportance NORMAL
public static final ChatMessageImportance HIGH
public static final ChatMessageImportance URGENT
public static final ChatMessageImportance UNKNOWN_FUTURE_VALUE
public static final ChatMessageImportance UNEXPECTED_VALUE
public static ChatMessageImportance[] values()
for (ChatMessageImportance c : ChatMessageImportance.values()) System.out.println(c);
public static ChatMessageImportance 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 null