Record Class Ingredient.StackEntry

java.lang.Object
java.lang.Record
net.minecraft.recipe.Ingredient.StackEntry
Record Components:
stack -
All Implemented Interfaces:
Ingredient.Entry
Enclosing class:
Ingredient

private static record Ingredient.StackEntry(ItemStack stack) extends Record implements Ingredient.Entry
Mappings:
Namespace Name
named net/minecraft/recipe/Ingredient$StackEntry
intermediary net/minecraft/class_1856$class_1857
official cyu$a
named stack
intermediary comp_1930
official b
  • Field Details

    • stack

      private final ItemStack stack
      The field for the stack record component.
    • CODEC

      static final com.mojang.serialization.Codec<Ingredient.StackEntry> CODEC
      Mappings:
      Namespace Name Mixin selector
      named CODEC Lnet/minecraft/recipe/Ingredient$StackEntry;CODEC:Lcom/mojang/serialization/Codec;
      intermediary field_46097 Lnet/minecraft/class_1856$class_1857;field_46097:Lcom/mojang/serialization/Codec;
      official c Lcyu$a;c:Lcom/mojang/serialization/Codec;
  • Constructor Details

    • StackEntry

      private StackEntry(ItemStack stack)
      Creates an instance of a StackEntry record class.
      Parameters:
      stack - the value for the stack record component
  • Method Details

    • equals

      public 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.
    • getStacks

      public Collection<ItemStack> getStacks()
      Specified by:
      getStacks in interface Ingredient.Entry
      Mappings:
      Namespace Name Mixin selector
      named getStacks Lnet/minecraft/recipe/Ingredient$Entry;getStacks()Ljava/util/Collection;
      intermediary method_8108 Lnet/minecraft/class_1856$class_1859;method_8108()Ljava/util/Collection;
      official a Lcyu$c;a()Ljava/util/Collection;
    • 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
    • stack

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