Package net.minecraft.entity.attribute
Record Class EntityAttributeModifier
java.lang.Object
java.lang.Record
net.minecraft.entity.attribute.EntityAttributeModifier
- Record Components:
uuid-value-operation-
public record EntityAttributeModifier(Identifier uuid, double value, EntityAttributeModifier.Operation operation)
extends Record
- Mappings:
Namespace Name named net/minecraft/entity/attribute/EntityAttributeModifierintermediary net/minecraft/class_1322official busnamed uuidintermediary comp_2447official dnamed valueintermediary comp_2449official enamed operationintermediary comp_2450official f
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic enumRepresents an operation which can be applied to an attribute modifier. -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<EntityAttributeModifier> private static final Loggerstatic final com.mojang.serialization.MapCodec<EntityAttributeModifier> private final EntityAttributeModifier.OperationThe field for theoperationrecord component.static final PacketCodec<ByteBuf, EntityAttributeModifier> private final IdentifierThe field for theuuidrecord component.private final doubleThe field for thevaluerecord component. -
Constructor Summary
ConstructorsConstructorDescriptionEntityAttributeModifier(Identifier identifier, double double2, EntityAttributeModifier.Operation operation) -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.static @Nullable EntityAttributeModifierfromNbt(NbtCompound nbt) final inthashCode()Returns a hash code value for this object.booleanmethod_60718(Identifier identifier) Returns the value of theoperationrecord component.toNbt()final StringtoString()Returns a string representation of this record class.uuid()Returns the value of theuuidrecord component.doublevalue()Returns the value of thevaluerecord component.
-
Field Details
-
uuid
The field for theuuidrecord component. -
value
private final double valueThe field for thevaluerecord component. -
operation
The field for theoperationrecord component. -
LOGGER
- Mappings:
Namespace Name Mixin selector named LOGGERLnet/minecraft/entity/attribute/EntityAttributeModifier;LOGGER:Lorg/slf4j/Logger;intermediary field_23712Lnet/minecraft/class_1322;field_23712:Lorg/slf4j/Logger;official gLbus;g:Lorg/slf4j/Logger;
-
MAP_CODEC
- Mappings:
Namespace Name Mixin selector named MAP_CODECLnet/minecraft/entity/attribute/EntityAttributeModifier;MAP_CODEC:Lcom/mojang/serialization/MapCodec;intermediary field_49232Lnet/minecraft/class_1322;field_49232:Lcom/mojang/serialization/MapCodec;official aLbus;a:Lcom/mojang/serialization/MapCodec;
-
CODEC
- Mappings:
Namespace Name Mixin selector named CODECLnet/minecraft/entity/attribute/EntityAttributeModifier;CODEC:Lcom/mojang/serialization/Codec;intermediary field_46247Lnet/minecraft/class_1322;field_46247:Lcom/mojang/serialization/Codec;official bLbus;b:Lcom/mojang/serialization/Codec;
-
PACKET_CODEC
- Mappings:
Namespace Name Mixin selector named PACKET_CODECLnet/minecraft/entity/attribute/EntityAttributeModifier;PACKET_CODEC:Lnet/minecraft/network/codec/PacketCodec;intermediary field_49233Lnet/minecraft/class_1322;field_49233:Lnet/minecraft/class_9139;official cLbus;c:Lyw;
-
-
Constructor Details
-
EntityAttributeModifier
public EntityAttributeModifier(Identifier identifier, double double2, EntityAttributeModifier.Operation operation)
-
-
Method Details
-
toNbt
- Mappings:
Namespace Name Mixin selector named toNbtLnet/minecraft/entity/attribute/EntityAttributeModifier;toNbt()Lnet/minecraft/nbt/NbtCompound;intermediary method_26860Lnet/minecraft/class_1322;method_26860()Lnet/minecraft/class_2487;official aLbus;a()Lua;
-
fromNbt
- Mappings:
Namespace Name Mixin selector named fromNbtLnet/minecraft/entity/attribute/EntityAttributeModifier;fromNbt(Lnet/minecraft/nbt/NbtCompound;)Lnet/minecraft/entity/attribute/EntityAttributeModifier;intermediary method_26859Lnet/minecraft/class_1322;method_26859(Lnet/minecraft/class_2487;)Lnet/minecraft/class_1322;official aLbus;a(Lua;)Lbus;
-
method_60718
- Mappings:
Namespace Name Mixin selector named method_60718Lnet/minecraft/entity/attribute/EntityAttributeModifier;method_60718(Lnet/minecraft/util/Identifier;)Zintermediary method_60718Lnet/minecraft/class_1322;method_60718(Lnet/minecraft/class_2960;)Zofficial aLbus;a(Lakq;)Z
-
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 '=='. -
uuid
Returns the value of theuuidrecord component.- Returns:
- the value of the
uuidrecord component
-
value
public double value()Returns the value of thevaluerecord component.- Returns:
- the value of the
valuerecord component
-
operation
Returns the value of theoperationrecord component.- Returns:
- the value of the
operationrecord component
-