Record Class Enchantment.Properties

java.lang.Object
java.lang.Record
net.minecraft.enchantment.Enchantment.Properties
Record Components:
supportedItems -
primaryItems -
weight -
maxLevel -
minCost -
maxCost -
anvilCost -
requiredFeatures -
slots -
Enclosing class:
Enchantment

public static record Enchantment.Properties(TagKey<Item> supportedItems, Optional<TagKey<Item>> primaryItems, int weight, int maxLevel, Enchantment.Cost minCost, Enchantment.Cost maxCost, int anvilCost, FeatureSet requiredFeatures, EquipmentSlot[] slots) extends Record
Mappings:
Namespace Name
named net/minecraft/enchantment/Enchantment$Properties
intermediary net/minecraft/class_1887$class_9427
official dac$b
named supportedItems
intermediary comp_2506
official a
named primaryItems
intermediary comp_2507
official b
named weight
intermediary comp_2508
official c
named maxLevel
intermediary comp_2509
official d
named minCost
intermediary comp_2510
official e
named maxCost
intermediary comp_2511
official f
named anvilCost
intermediary comp_2512
official g
named requiredFeatures
intermediary comp_2548
official h
named slots
intermediary comp_2513
official i
  • Field Details

    • supportedItems

      private final TagKey<Item> supportedItems
      The field for the supportedItems record component.
    • primaryItems

      private final Optional<TagKey<Item>> primaryItems
      The field for the primaryItems record component.
    • weight

      private final int weight
      The field for the weight record component.
    • maxLevel

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

      private final Enchantment.Cost minCost
      The field for the minCost record component.
    • maxCost

      private final Enchantment.Cost maxCost
      The field for the maxCost record component.
    • anvilCost

      private final int anvilCost
      The field for the anvilCost record component.
    • requiredFeatures

      private final FeatureSet requiredFeatures
      The field for the requiredFeatures record component.
    • slots

      private final EquipmentSlot[] slots
      The field for the slots record component.
  • Constructor Details

  • 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 object)
      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:
      object - the object with which to compare
      Returns:
      true if this object is the same as the object argument; false otherwise.
    • supportedItems

      public TagKey<Item> supportedItems()
      Returns the value of the supportedItems record component.
      Returns:
      the value of the supportedItems record component
    • primaryItems

      public Optional<TagKey<Item>> primaryItems()
      Returns the value of the primaryItems record component.
      Returns:
      the value of the primaryItems record component
    • weight

      public int weight()
      Returns the value of the weight record component.
      Returns:
      the value of the weight record component
    • maxLevel

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

      public Enchantment.Cost minCost()
      Returns the value of the minCost record component.
      Returns:
      the value of the minCost record component
    • maxCost

      public Enchantment.Cost maxCost()
      Returns the value of the maxCost record component.
      Returns:
      the value of the maxCost record component
    • anvilCost

      public int anvilCost()
      Returns the value of the anvilCost record component.
      Returns:
      the value of the anvilCost record component
    • requiredFeatures

      public FeatureSet requiredFeatures()
      Returns the value of the requiredFeatures record component.
      Returns:
      the value of the requiredFeatures record component
    • slots

      public EquipmentSlot[] slots()
      Returns the value of the slots record component.
      Returns:
      the value of the slots record component