Record Class SetAttributesFunction.Modifier

java.lang.Object
java.lang.Record
net.minecraft.world.level.storage.loot.functions.SetAttributesFunction.Modifier
Enclosing class:
SetAttributesFunction

static record SetAttributesFunction.Modifier(String name, Holder<Attribute> attribute, AttributeModifier.Operation operation, NumberProvider amount, List<EquipmentSlot> slots, Optional<UUID> id) extends Record
  • Field Details

    • name

      private final String name
      The field for the name record component.
    • attribute

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

      private final AttributeModifier.Operation operation
      The field for the operation record component.
    • amount

      private final NumberProvider amount
      The field for the amount record component.
    • slots

      private final List<EquipmentSlot> slots
      The field for the slots record component.
    • id

      private final Optional<UUID> id
      The field for the id record component.
    • SLOTS_CODEC

      private static final com.mojang.serialization.Codec<List<EquipmentSlot>> SLOTS_CODEC
    • CODEC

      public static final com.mojang.serialization.Codec<SetAttributesFunction.Modifier> CODEC
  • Constructor Details

    • Modifier

      Modifier(String name, Holder<Attribute> attribute, AttributeModifier.Operation operation, NumberProvider amount, List<EquipmentSlot> slots, Optional<UUID> id)
      Creates an instance of a Modifier record class.
      Parameters:
      name - the value for the name record component
      attribute - the value for the attribute record component
      operation - the value for the operation record component
      amount - the value for the amount record component
      slots - the value for the slots record component
      id - the value for the id 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. All components in this record class are compared with Objects::equals(Object,Object).
      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.
    • name

      public String name()
      Returns the value of the name record component.
      Returns:
      the value of the name record component
    • attribute

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

      public AttributeModifier.Operation operation()
      Returns the value of the operation record component.
      Returns:
      the value of the operation record component
    • amount

      public NumberProvider amount()
      Returns the value of the amount record component.
      Returns:
      the value of the amount record component
    • slots

      public List<EquipmentSlot> slots()
      Returns the value of the slots record component.
      Returns:
      the value of the slots record component
    • id

      public Optional<UUID> id()
      Returns the value of the id record component.
      Returns:
      the value of the id record component