Record Class EnchantmentsByCost

java.lang.Object
java.lang.Record
net.minecraft.world.item.enchantment.providers.EnchantmentsByCost
All Implemented Interfaces:
EnchantmentProvider

public record EnchantmentsByCost(HolderSet<Enchantment> enchantments, IntProvider cost) extends Record implements EnchantmentProvider
  • Field Details

    • enchantments

      private final HolderSet<Enchantment> enchantments
      The field for the enchantments record component.
    • cost

      private final IntProvider cost
      The field for the cost record component.
    • CODEC

      public static final com.mojang.serialization.MapCodec<EnchantmentsByCost> CODEC
  • Constructor Details

    • EnchantmentsByCost

      public EnchantmentsByCost(HolderSet<Enchantment> enchantments, IntProvider cost)
      Creates an instance of a EnchantmentsByCost record class.
      Parameters:
      enchantments - the value for the enchantments record component
      cost - the value for the cost record component
  • Method Details

    • enchant

      public void enchant(ItemStack p_345483_, ItemEnchantments.Mutable p_346331_, RandomSource p_344794_, DifficultyInstance p_348577_)
      Specified by:
      enchant in interface EnchantmentProvider
    • codec

      public com.mojang.serialization.MapCodec<EnchantmentsByCost> codec()
      Specified by:
      codec in interface EnchantmentProvider
    • 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.
    • enchantments

      public HolderSet<Enchantment> enchantments()
      Returns the value of the enchantments record component.
      Returns:
      the value of the enchantments record component
    • cost

      public IntProvider cost()
      Returns the value of the cost record component.
      Returns:
      the value of the cost record component