Record Class AttributeInstance.Packed

java.lang.Object
java.lang.Record
net.minecraft.world.entity.ai.attributes.AttributeInstance.Packed
Enclosing class:
AttributeInstance

public static record AttributeInstance.Packed(Holder<Attribute> attribute, double baseValue, List<AttributeModifier> modifiers) extends Record
  • Field Details

    • attribute

      private final Holder<Attribute> attribute
      The field for the attribute record component.
    • baseValue

      private final double baseValue
      The field for the baseValue record component.
    • modifiers

      private final List<AttributeModifier> modifiers
      The field for the modifiers record component.
    • CODEC

      public static final com.mojang.serialization.Codec<AttributeInstance.Packed> CODEC
    • LIST_CODEC

      public static final com.mojang.serialization.Codec<List<AttributeInstance.Packed>> LIST_CODEC
  • Constructor Details

    • Packed

      public Packed(Holder<Attribute> attribute, double baseValue, List<AttributeModifier> modifiers)
      Creates an instance of a Packed record class.
      Parameters:
      attribute - the value for the attribute record component
      baseValue - the value for the baseValue record component
      modifiers - the value for the modifiers record component
  • Method Details

    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • attribute

      public Holder<Attribute> attribute()
      Returns the value of the attribute record component.
      Returns:
      the value of the attribute record component
    • baseValue

      public double baseValue()
      Returns the value of the baseValue record component.
      Returns:
      the value of the baseValue record component
    • modifiers

      public List<AttributeModifier> modifiers()
      Returns the value of the modifiers record component.
      Returns:
      the value of the modifiers record component