Record Class AttributeModifier
java.lang.Object
java.lang.Record
net.minestom.server.entity.attribute.AttributeModifier
public record AttributeModifier(@NotNull net.kyori.adventure.key.Key id, double amount, @NotNull AttributeOperation operation)
extends Record
Represent an attribute modifier.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Codec<AttributeModifier> static final NetworkBuffer.Type<AttributeModifier> -
Constructor Summary
ConstructorsConstructorDescriptionAttributeModifier(@NotNull String id, double amount, @NotNull AttributeOperation operation) Creates a new modifier with a random id.AttributeModifier(@NotNull net.kyori.adventure.key.Key id, double amount, @NotNull AttributeOperation operation) Creates an instance of aAttributeModifierrecord class. -
Method Summary
Modifier and TypeMethodDescriptiondoubleamount()Returns the value of theamountrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.@NotNull net.kyori.adventure.key.Keyid()Returns the value of theidrecord component.@NotNull AttributeOperationReturns the value of theoperationrecord component.final StringtoString()Returns a string representation of this record class.
-
Field Details
-
NETWORK_TYPE
-
CODEC
-
-
Constructor Details
-
AttributeModifier
public AttributeModifier(@NotNull @KeyPattern @NotNull String id, double amount, @NotNull @NotNull AttributeOperation operation) Creates a new modifier with a random id.- Parameters:
id- the (namespace) id of this modifieramount- the value of this modifieroperation- the operation to apply this modifier with
-
AttributeModifier
public AttributeModifier(@NotNull @NotNull net.kyori.adventure.key.Key id, double amount, @NotNull @NotNull AttributeOperation operation) Creates an instance of aAttributeModifierrecord class.- Parameters:
id- the value for theidrecord componentamount- the value for theamountrecord componentoperation- the value for theoperationrecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
id
@NotNull public @NotNull net.kyori.adventure.key.Key id()Returns the value of theidrecord component.- Returns:
- the value of the
idrecord component
-
amount
public double amount()Returns the value of theamountrecord component.- Returns:
- the value of the
amountrecord component
-
operation
Returns the value of theoperationrecord component.- Returns:
- the value of the
operationrecord component
-