Record Class AttributeModifier
java.lang.Object
java.lang.Record
net.minecraft.world.entity.ai.attributes.AttributeModifier
public record AttributeModifier(ResourceLocation id, double amount, AttributeModifier.Operation operation)
extends Record
-
Nested Class Summary
-
Field Summary
Modifier and TypeFieldDescriptionprivate final double
The field for theamount
record component.static final com.mojang.serialization.Codec
<AttributeModifier> private final ResourceLocation
The field for theid
record component.private static final org.slf4j.Logger
static final com.mojang.serialization.MapCodec
<AttributeModifier> private final AttributeModifier.Operation
The field for theoperation
record component.static final StreamCodec
<io.netty.buffer.ByteBuf, AttributeModifier> -
Constructor Summary
ConstructorDescriptionAttributeModifier
(ResourceLocation id, double amount, AttributeModifier.Operation operation) Creates an instance of aAttributeModifier
record class. -
Method Summary
Modifier and TypeMethodDescriptiondouble
amount()
Returns the value of theamount
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.id()
Returns the value of theid
record component.boolean
is
(ResourceLocation p_342875_) static AttributeModifier
load
(CompoundTag p_22213_) Returns the value of theoperation
record component.save()
final String
toString()
Returns a string representation of this record class.
-
Field Details
-
id
The field for theid
record component. -
amount
private final double amountThe field for theamount
record component. -
operation
The field for theoperation
record component. -
LOGGER
private static final org.slf4j.Logger LOGGER -
MAP_CODEC
-
CODEC
-
STREAM_CODEC
-
-
Constructor Details
-
AttributeModifier
Creates an instance of aAttributeModifier
record class.- Parameters:
id
- the value for theid
record componentamount
- the value for theamount
record componentoperation
- the value for theoperation
record component
-
-
Method Details
-
save
-
load
-
is
-
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 theid
record component.- Returns:
- the value of the
id
record component
-
amount
public double amount()Returns the value of theamount
record component.- Returns:
- the value of the
amount
record component
-
operation
Returns the value of theoperation
record component.- Returns:
- the value of the
operation
record component
-