Enum Class PartyMessage

java.lang.Object
java.lang.Enum<PartyMessage>
fr.prodrivers.bukkit.commons.parties.PartyMessage
All Implemented Interfaces:
Serializable, Comparable<PartyMessage>, Constable

public enum PartyMessage extends Enum<PartyMessage>
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

  • Enum Constant Details

    • DISBANDED

      public static final PartyMessage DISBANDED
      Party was disbanded
    • JOINED_YOU

      public static final PartyMessage JOINED_YOU
      You joined a party
    • JOINED_OTHERS

      public static final PartyMessage JOINED_OTHERS
      A player joined your party
    • LEFT_YOU

      public static final PartyMessage LEFT_YOU
      You left a party
    • LEFT_OTHERS

      public static final PartyMessage LEFT_OTHERS
      A player left your party
    • CANNOT_INVITE_YOURSELF

      public static final PartyMessage CANNOT_INVITE_YOURSELF
      You cannot invite yourself
    • NOT_PARTY_OWNER_YOU

      public static final PartyMessage NOT_PARTY_OWNER_YOU
      You are not a party owner
    • PLAYER_INVITED_INVITER

      public static final PartyMessage PLAYER_INVITED_INVITER
      You invited a player to your party
    • PLAYER_INVITED_YOU

      public static final PartyMessage PLAYER_INVITED_YOU
      You were invited to a party
    • PLAYER_IS_IN_PARTY

      public static final PartyMessage PLAYER_IS_IN_PARTY
      Player is already in a party
    • PARTY_LEAVE_BEFORE_JOINING_ANOTHER

      public static final PartyMessage PARTY_LEAVE_BEFORE_JOINING_ANOTHER
      You must leave your party before joining another
    • PARTY_NOT_INVITED_YOU

      public static final PartyMessage PARTY_NOT_INVITED_YOU
      You were not invited to this party
    • PARTY_LEADER_ASSIGNED_YOU

      public static final PartyMessage PARTY_LEADER_ASSIGNED_YOU
      You were elected as new party leader
    • PARTY_LEADER_ASSIGNED_OTHERS

      public static final PartyMessage PARTY_LEADER_ASSIGNED_OTHERS
      A player was elected as new party leader
  • Method Details

    • values

      public static PartyMessage[] 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

      public static PartyMessage valueOf(String name)
      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 name
      NullPointerException - if the argument is null