Record Class UseRemainder

java.lang.Object
java.lang.Record
net.minecraft.world.item.component.UseRemainder

public record UseRemainder(ItemStack convertInto) extends Record
  • Field Details

  • Constructor Details

    • UseRemainder

      public UseRemainder(ItemStack convertInto)
      Creates an instance of a UseRemainder record class.
      Parameters:
      convertInto - the value for the convertInto record component
  • Method Details

    • convertIntoRemainder

      public ItemStack convertIntoRemainder(ItemStack p_366873_, int p_366665_, boolean p_376140_, UseRemainder.OnExtraCreatedRemainder p_376106_)
    • equals

      public boolean equals(Object p_366515_)
      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:
      p_366515_ - the object with which to compare
      Returns:
      true if this object is the same as the p_366515_ argument; false otherwise.
    • hashCode

      public 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
    • 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
    • convertInto

      public ItemStack convertInto()
      Returns the value of the convertInto record component.
      Returns:
      the value of the convertInto record component