public static enum GroupClient.GroupEventType extends java.lang.Enum<GroupClient.GroupEventType>
Enum Constant and Description |
---|
DISBANDED |
JOINED |
LEADERCHANGED |
LEFT |
MUTED |
UNMUTED |
Modifier and Type | Method and Description |
---|---|
static GroupClient.GroupEventType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static GroupClient.GroupEventType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final GroupClient.GroupEventType JOINED
public static final GroupClient.GroupEventType LEFT
public static final GroupClient.GroupEventType DISBANDED
public static final GroupClient.GroupEventType LEADERCHANGED
public static final GroupClient.GroupEventType MUTED
public static final GroupClient.GroupEventType UNMUTED
public static GroupClient.GroupEventType[] values()
for (GroupClient.GroupEventType c : GroupClient.GroupEventType.values()) System.out.println(c);
public static GroupClient.GroupEventType 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