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/EntityAttributeModifierintermediary net/minecraft/class_1322official buxnamed uuidintermediary comp_2447official dnamed nameintermediary comp_2448official enamed valueintermediary comp_2449official fnamed operationintermediary comp_2450official g
-
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 StringThe field for thenamerecord component.private final EntityAttributeModifier.OperationThe field for theoperationrecord component.static final PacketCodec<ByteBuf, EntityAttributeModifier> private final UUIDThe field for theuuidrecord component.private final doubleThe field for thevaluerecord component. -
Constructor Summary
ConstructorsConstructorDescriptionEntityAttributeModifier(String name, double value, EntityAttributeModifier.Operation operation) EntityAttributeModifier(UUID uuid, String name, double value, EntityAttributeModifier.Operation operation) Creates an instance of aEntityAttributeModifierrecord class. -
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.name()Returns the value of thenamerecord component.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. -
name
The field for thenamerecord 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 hLbux;h: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 aLbux;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 bLbux;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 cLbux;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;)Vintermediary <init>Lnet/minecraft/class_1322;<init>(Ljava/lang/String;DLnet/minecraft/class_1322$class_1323;)Vofficial <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 aEntityAttributeModifierrecord class.
-
-
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 aLbux;a()Lus;
-
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 aLbux;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 theuuidrecord component.- Returns:
- the value of the
uuidrecord component
-
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord 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
-