public static enum ChannelUserListChangeEvent.Change extends Enum<ChannelUserListChangeEvent.Change>
| Enum Constant and Description |
|---|
JOIN
A user is joining.
|
LEAVE
A user is leaving.
|
| Modifier and Type | Method and Description |
|---|---|
static ChannelUserListChangeEvent.Change |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ChannelUserListChangeEvent.Change[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChannelUserListChangeEvent.Change JOIN
public static final ChannelUserListChangeEvent.Change LEAVE
public static ChannelUserListChangeEvent.Change[] values()
for (ChannelUserListChangeEvent.Change c : ChannelUserListChangeEvent.Change.values()) System.out.println(c);
public static ChannelUserListChangeEvent.Change valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2013–2021 Kitteh. All rights reserved.