Record Class AttributeModifier
java.lang.Object
java.lang.Record
net.minecraft.world.entity.ai.attributes.AttributeModifier
public record AttributeModifier(UUID id, String name, double amount, AttributeModifier.Operation operation)
extends Record
-
Nested Class Summary
Nested Classes -
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final doubleThe field for theamountrecord component.static final com.mojang.serialization.Codec<AttributeModifier> private final UUIDThe field for theidrecord component.private static final org.slf4j.Loggerstatic final com.mojang.serialization.MapCodec<AttributeModifier> private final StringThe field for thenamerecord component.private final AttributeModifier.OperationThe field for theoperationrecord component.static final StreamCodec<io.netty.buffer.ByteBuf, AttributeModifier> -
Constructor Summary
ConstructorsConstructorDescriptionAttributeModifier(String p_22196_, double p_22197_, AttributeModifier.Operation p_22198_) AttributeModifier(UUID id, String name, double amount, AttributeModifier.Operation 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.id()Returns the value of theidrecord component.static AttributeModifierload(CompoundTag p_22213_) name()Returns the value of thenamerecord component.Returns the value of theoperationrecord component.save()final StringtoString()Returns a string representation of this record class.
-
Field Details
-
id
The field for theidrecord component. -
name
The field for thenamerecord component. -
amount
private final double amountThe field for theamountrecord component. -
operation
The field for theoperationrecord component. -
LOGGER
private static final org.slf4j.Logger LOGGER -
MAP_CODEC
-
CODEC
-
STREAM_CODEC
-
-
Constructor Details
-
AttributeModifier
-
AttributeModifier
public AttributeModifier(UUID id, String name, double amount, AttributeModifier.Operation operation) Creates an instance of aAttributeModifierrecord class.- Parameters:
id- the value for theidrecord componentname- the value for thenamerecord componentamount- the value for theamountrecord componentoperation- the value for theoperationrecord component
-
-
Method Details
-
save
-
load
-
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
Returns the value of theidrecord component.- Returns:
- the value of the
idrecord component
-
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord 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
-