Package in.dragonbra.javasteam.enums
Enum EChatRoomMemberStateChange
- java.lang.Object
-
- java.lang.Enum<EChatRoomMemberStateChange>
-
- in.dragonbra.javasteam.enums.EChatRoomMemberStateChange
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<EChatRoomMemberStateChange>
public enum EChatRoomMemberStateChange extends java.lang.Enum<EChatRoomMemberStateChange>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description BannedInvalidInvitedInviteDismissedJoinedKickedMutedPartedRankChangedRolesChanged
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intcode()static EChatRoomMemberStateChangefrom(int code)static EChatRoomMemberStateChangevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static EChatRoomMemberStateChange[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Invalid
public static final EChatRoomMemberStateChange Invalid
-
Joined
public static final EChatRoomMemberStateChange Joined
-
Parted
public static final EChatRoomMemberStateChange Parted
-
Kicked
public static final EChatRoomMemberStateChange Kicked
-
Invited
public static final EChatRoomMemberStateChange Invited
-
RankChanged
public static final EChatRoomMemberStateChange RankChanged
-
InviteDismissed
public static final EChatRoomMemberStateChange InviteDismissed
-
Muted
public static final EChatRoomMemberStateChange Muted
-
Banned
public static final EChatRoomMemberStateChange Banned
-
RolesChanged
public static final EChatRoomMemberStateChange RolesChanged
-
-
Method Detail
-
values
public static EChatRoomMemberStateChange[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (EChatRoomMemberStateChange c : EChatRoomMemberStateChange.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EChatRoomMemberStateChange valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
code
public int code()
-
from
public static EChatRoomMemberStateChange from(int code)
-
-