public enum EChatroomNotificationLevel extends java.lang.Enum<EChatroomNotificationLevel>
| Enum Constant and Description |
|---|
AllMessages |
Invalid |
MentionAll |
MentionMe |
None |
| Modifier and Type | Method and Description |
|---|---|
int |
code() |
static EChatroomNotificationLevel |
from(int code) |
static EChatroomNotificationLevel |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static EChatroomNotificationLevel[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final EChatroomNotificationLevel Invalid
public static final EChatroomNotificationLevel None
public static final EChatroomNotificationLevel MentionMe
public static final EChatroomNotificationLevel MentionAll
public static final EChatroomNotificationLevel AllMessages
public static EChatroomNotificationLevel[] values()
for (EChatroomNotificationLevel c : EChatroomNotificationLevel.values()) System.out.println(c);
public static EChatroomNotificationLevel 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 EChatroomNotificationLevel from(int code)