Package net.minecraft.entity.attribute
Record Class EntityAttributeModifier
java.lang.Object
java.lang.Record
net.minecraft.entity.attribute.EntityAttributeModifier
- Record Components:
uuid
-name
-value
-operation
-
public record EntityAttributeModifier(UUID uuid, String name, double value, EntityAttributeModifier.Operation operation)
extends Record
- Mappings:
Namespace Name named net/minecraft/entity/attribute/EntityAttributeModifier
intermediary net/minecraft/class_1322
official bux
named uuid
intermediary comp_2447
official d
named name
intermediary comp_2448
official e
named value
intermediary comp_2449
official f
named operation
intermediary comp_2450
official g
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic enum
Represents an operation which can be applied to an attribute modifier. -
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec
<EntityAttributeModifier> private static final Logger
static final com.mojang.serialization.MapCodec
<EntityAttributeModifier> private final String
The field for thename
record component.private final EntityAttributeModifier.Operation
The field for theoperation
record component.static final PacketCodec
<ByteBuf, EntityAttributeModifier> private final UUID
The field for theuuid
record component.private final double
The field for thevalue
record component. -
Constructor Summary
ConstructorDescriptionEntityAttributeModifier
(String name, double value, EntityAttributeModifier.Operation operation) EntityAttributeModifier
(UUID uuid, String name, double value, EntityAttributeModifier.Operation operation) Creates an instance of aEntityAttributeModifier
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.static @Nullable EntityAttributeModifier
fromNbt
(NbtCompound nbt) final int
hashCode()
Returns a hash code value for this object.name()
Returns the value of thename
record component.Returns the value of theoperation
record component.toNbt()
final String
toString()
Returns a string representation of this record class.uuid()
Returns the value of theuuid
record component.double
value()
Returns the value of thevalue
record component.
-
Field Details
-
uuid
The field for theuuid
record component. -
name
The field for thename
record component. -
value
private final double valueThe field for thevalue
record component. -
operation
The field for theoperation
record component. -
LOGGER
- Mappings:
Namespace Name Mixin selector named LOGGER
Lnet/minecraft/entity/attribute/EntityAttributeModifier;LOGGER:Lorg/slf4j/Logger;
intermediary field_23712
Lnet/minecraft/class_1322;field_23712:Lorg/slf4j/Logger;
official h
Lbux;h:Lorg/slf4j/Logger;
-
MAP_CODEC
- Mappings:
Namespace Name Mixin selector named MAP_CODEC
Lnet/minecraft/entity/attribute/EntityAttributeModifier;MAP_CODEC:Lcom/mojang/serialization/MapCodec;
intermediary field_49232
Lnet/minecraft/class_1322;field_49232:Lcom/mojang/serialization/MapCodec;
official a
Lbux;a:Lcom/mojang/serialization/MapCodec;
-
CODEC
- Mappings:
Namespace Name Mixin selector named CODEC
Lnet/minecraft/entity/attribute/EntityAttributeModifier;CODEC:Lcom/mojang/serialization/Codec;
intermediary field_46247
Lnet/minecraft/class_1322;field_46247:Lcom/mojang/serialization/Codec;
official b
Lbux;b:Lcom/mojang/serialization/Codec;
-
PACKET_CODEC
- Mappings:
Namespace Name Mixin selector named PACKET_CODEC
Lnet/minecraft/entity/attribute/EntityAttributeModifier;PACKET_CODEC:Lnet/minecraft/network/codec/PacketCodec;
intermediary field_49233
Lnet/minecraft/class_1322;field_49233:Lnet/minecraft/class_9139;
official c
Lbux;c:Lzn;
-
-
Constructor Details
-
EntityAttributeModifier
public EntityAttributeModifier(String name, double value, EntityAttributeModifier.Operation operation) - Mappings:
Namespace Name Mixin selector named <init>
Lnet/minecraft/entity/attribute/EntityAttributeModifier;<init>(Ljava/lang/String;DLnet/minecraft/entity/attribute/EntityAttributeModifier$Operation;)V
intermediary <init>
Lnet/minecraft/class_1322;<init>(Ljava/lang/String;DLnet/minecraft/class_1322$class_1323;)V
official <init>
Lbux;<init>(Ljava/lang/String;DLbux$a;)V
-
EntityAttributeModifier
public EntityAttributeModifier(UUID uuid, String name, double value, EntityAttributeModifier.Operation operation) Creates an instance of aEntityAttributeModifier
record class.
-
-
Method Details
-
toNbt
- Mappings:
Namespace Name Mixin selector named toNbt
Lnet/minecraft/entity/attribute/EntityAttributeModifier;toNbt()Lnet/minecraft/nbt/NbtCompound;
intermediary method_26860
Lnet/minecraft/class_1322;method_26860()Lnet/minecraft/class_2487;
official a
Lbux;a()Lus;
-
fromNbt
- Mappings:
Namespace Name Mixin selector named fromNbt
Lnet/minecraft/entity/attribute/EntityAttributeModifier;fromNbt(Lnet/minecraft/nbt/NbtCompound;)Lnet/minecraft/entity/attribute/EntityAttributeModifier;
intermediary method_26859
Lnet/minecraft/class_1322;method_26859(Lnet/minecraft/class_2487;)Lnet/minecraft/class_1322;
official a
Lbux;a(Lus;)Lbux;
-
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 theuuid
record component.- Returns:
- the value of the
uuid
record component
-
name
Returns the value of thename
record component.- Returns:
- the value of the
name
record component
-
value
public double value()Returns the value of thevalue
record component.- Returns:
- the value of the
value
record component
-
operation
Returns the value of theoperation
record component.- Returns:
- the value of the
operation
record component
-