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
-
Field Summary
Modifier and TypeFieldDescriptionprivate final double
The field for theamount
record component.static final com.mojang.serialization.Codec
<AttributeModifier> private final UUID
The field for theid
record component.private static final org.slf4j.Logger
static final com.mojang.serialization.MapCodec
<AttributeModifier> private final String
The field for thename
record component.private final AttributeModifier.Operation
The field for theoperation
record component.static final StreamCodec
<io.netty.buffer.ByteBuf, AttributeModifier> -
Constructor Summary
ConstructorDescriptionAttributeModifier
(String p_22196_, double p_22197_, AttributeModifier.Operation p_22198_) AttributeModifier
(UUID id, String name, 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.static AttributeModifier
load
(CompoundTag p_22213_) name()
Returns the value of thename
record component.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. -
name
The field for thename
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
-
AttributeModifier
public AttributeModifier(UUID id, String name, double amount, AttributeModifier.Operation operation) Creates an instance of aAttributeModifier
record class.- Parameters:
id
- the value for theid
record componentname
- the value for thename
record componentamount
- the value for theamount
record componentoperation
- the value for theoperation
record 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 theid
record component.- Returns:
- the value of the
id
record component
-
name
Returns the value of thename
record component.- Returns:
- the value of the
name
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
-