Record Class EnchantmentsByCostWithDifficulty

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

public record EnchantmentsByCostWithDifficulty(HolderSet<Enchantment> enchantments, int minCost, int maxCostSpan) extends Record implements EnchantmentProvider
  • Field Details

    • enchantments

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

      private final int minCost
      The field for the minCost record component.
    • maxCostSpan

      private final int maxCostSpan
      The field for the maxCostSpan record component.
    • MAX_ALLOWED_VALUE_PART

      public static final int MAX_ALLOWED_VALUE_PART
      See Also:
    • CODEC

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

    • EnchantmentsByCostWithDifficulty

      public EnchantmentsByCostWithDifficulty(HolderSet<Enchantment> enchantments, int minCost, int maxCostSpan)
      Creates an instance of a EnchantmentsByCostWithDifficulty record class.
      Parameters:
      enchantments - the value for the enchantments record component
      minCost - the value for the minCost record component
      maxCostSpan - the value for the maxCostSpan record component
  • Method Details

    • enchant

      public void enchant(ItemStack p_344777_, ItemEnchantments.Mutable p_344895_, RandomSource p_346012_, DifficultyInstance p_348635_)
      Specified by:
      enchant in interface EnchantmentProvider
    • codec

      public com.mojang.serialization.MapCodec<EnchantmentsByCostWithDifficulty> 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. 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.
    • enchantments

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

      public int minCost()
      Returns the value of the minCost record component.
      Returns:
      the value of the minCost record component
    • maxCostSpan

      public int maxCostSpan()
      Returns the value of the maxCostSpan record component.
      Returns:
      the value of the maxCostSpan record component