Record Class Tool.Rule

java.lang.Object
java.lang.Record
net.minecraft.world.item.component.Tool.Rule
Enclosing class:
Tool

public static record Tool.Rule(HolderSet<Block> blocks, Optional<Float> speed, Optional<Boolean> correctForDrops) extends Record
  • Field Details

  • Constructor Details

    • Rule

      public Rule(HolderSet<Block> blocks, Optional<Float> speed, Optional<Boolean> correctForDrops)
      Creates an instance of a Rule record class.
      Parameters:
      blocks - the value for the blocks record component
      speed - the value for the speed record component
      correctForDrops - the value for the correctForDrops record component
  • Method Details

    • minesAndDrops

      public static Tool.Rule minesAndDrops(List<Block> p_335413_, float p_335923_)
    • minesAndDrops

      public static Tool.Rule minesAndDrops(TagKey<Block> p_335441_, float p_336060_)
    • deniesDrops

      public static Tool.Rule deniesDrops(TagKey<Block> p_335654_)
    • overrideSpeed

      public static Tool.Rule overrideSpeed(TagKey<Block> p_335580_, float p_335857_)
    • overrideSpeed

      public static Tool.Rule overrideSpeed(List<Block> p_335776_, float p_335593_)
    • forTag

      private static Tool.Rule forTag(TagKey<Block> p_336036_, Optional<Float> p_335728_, Optional<Boolean> p_335781_)
    • forBlocks

      private static Tool.Rule forBlocks(List<Block> p_335983_, Optional<Float> p_335694_, Optional<Boolean> p_335468_)
    • 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.
    • blocks

      public HolderSet<Block> blocks()
      Returns the value of the blocks record component.
      Returns:
      the value of the blocks record component
    • speed

      public Optional<Float> speed()
      Returns the value of the speed record component.
      Returns:
      the value of the speed record component
    • correctForDrops

      public Optional<Boolean> correctForDrops()
      Returns the value of the correctForDrops record component.
      Returns:
      the value of the correctForDrops record component