Package de.marcely.bedwars.api.player
Enum AttributeChangeCause
- All Implemented Interfaces:
Serializable
,Comparable<AttributeChangeCause>
,java.lang.constant.Constable
Add a certain cause when setting a player attribute.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionSimply set the value.Used when the attributes container is being loaded.Used by the ProxySync addon. -
Method Summary
Modifier and TypeMethodDescriptionstatic AttributeChangeCause
Returns the enum constant of this type with the specified name.static AttributeChangeCause[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
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
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
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
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
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 nameNullPointerException
- if the argument is null
-