Enum AttributeChangeCause

java.lang.Object
java.lang.Enum<AttributeChangeCause>
de.marcely.bedwars.api.player.AttributeChangeCause
All Implemented Interfaces:
Serializable, Comparable<AttributeChangeCause>, java.lang.constant.Constable

public enum AttributeChangeCause extends Enum<AttributeChangeCause>
Add a certain cause when setting a player attribute.
  • Enum Constant Details

    • GENERIC

      public static final AttributeChangeCause GENERIC
      Simply set the value.

      - Calls the related change event
      - Synchronizes the new value with remote servers
      - Marks that the attributes container must be saved again

    • INITIALIZATION

      public static final AttributeChangeCause INITIALIZATION
      Used when the attributes container is being loaded.

      - Does not call the related change event
      - Does not synchronize the new value with remote servers
      - Does not mark that the attributes container must be saved again

    • REMOTE

      public static final AttributeChangeCause REMOTE
      Used by the ProxySync addon.

      - Call the related change event
      - Does not synchronize the new value with remote servers
      - Does not mark that the attributes container must be saved again

  • Method Details

    • values

      public static AttributeChangeCause[] values()
      Returns an array containing the constants of this enum type, in the order they are declared.
      Returns:
      an array containing the constants of this enum type, in the order they are declared
    • valueOf

      public static AttributeChangeCause valueOf(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:
      IllegalArgumentException - if this enum type has no constant with the specified name
      NullPointerException - if the argument is null