Enum Class PartyMessage
- All Implemented Interfaces:
Serializable
,Comparable<PartyMessage>
,Constable
Describe a list of possible party messages
Party messages are triggered by the party manager, the party implementation is responsible for sending the actual message to the players.
Messages
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionYou cannot invite yourselfParty was disbandedA player joined your partyYou joined a partyA player left your partyYou left a partyYou are not a party ownerA player was elected as new party leaderYou were elected as new party leaderYou must leave your party before joining anotherYou were not invited to this partyYou invited a player to your partyYou were invited to a partyPlayer is already in a party -
Method Summary
Modifier and TypeMethodDescriptionstatic PartyMessage
Returns the enum constant of this class with the specified name.static PartyMessage[]
values()
Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
DISBANDED
Party was disbanded -
JOINED_YOU
You joined a party -
JOINED_OTHERS
A player joined your party -
LEFT_YOU
You left a party -
LEFT_OTHERS
A player left your party -
CANNOT_INVITE_YOURSELF
You cannot invite yourself -
NOT_PARTY_OWNER_YOU
You are not a party owner -
PLAYER_INVITED_INVITER
You invited a player to your party -
PLAYER_INVITED_YOU
You were invited to a party -
PLAYER_IS_IN_PARTY
Player is already in a party -
PARTY_LEAVE_BEFORE_JOINING_ANOTHER
You must leave your party before joining another -
PARTY_NOT_INVITED_YOU
You were not invited to this party -
PARTY_LEADER_ASSIGNED_YOU
You were elected as new party leader -
PARTY_LEADER_ASSIGNED_OTHERS
A player was elected as new party leader
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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:
IllegalArgumentException
- if this enum class has no constant with the specified nameNullPointerException
- if the argument is null
-