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