Record Class GhostRecipe.CyclingItem

java.lang.Object
java.lang.Record
net.minecraft.client.gui.screen.recipebook.GhostRecipe.CyclingItem
Record Components:
items -
isResultSlot -
Enclosing class:
GhostRecipe

@Environment(CLIENT) private static record GhostRecipe.CyclingItem(List<ItemStack> items, boolean isResultSlot) extends Record
Mappings:
Namespace Name
named net/minecraft/client/gui/screen/recipebook/GhostRecipe$CyclingItem
intermediary net/minecraft/class_9934$class_9935
official fxs$a
named items
intermediary comp_2983
official a
named isResultSlot
intermediary comp_2984
official b
  • Field Details

    • items

      private final List<ItemStack> items
      The field for the items record component.
    • isResultSlot

      private final boolean isResultSlot
      The field for the isResultSlot record component.
  • Constructor Details

  • Method Details

    • get

      public ItemStack get(int index)
      Mappings:
      Namespace Name Mixin selector
      named get Lnet/minecraft/client/gui/screen/recipebook/GhostRecipe$CyclingItem;get(I)Lnet/minecraft/item/ItemStack;
      intermediary method_62035 Lnet/minecraft/class_9934$class_9935;method_62035(I)Lnet/minecraft/class_1799;
      official a Lfxs$a;a(I)Lcxo;
    • 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.
    • items

      public List<ItemStack> items()
      Returns the value of the items record component.
      Returns:
      the value of the items record component
    • isResultSlot

      public boolean isResultSlot()
      Returns the value of the isResultSlot record component.
      Returns:
      the value of the isResultSlot record component