Record Class RecipeBookTestRecipe.Ingredients

java.lang.Object
java.lang.Record
net.neoforged.neoforge.oldtest.recipebook.RecipeBookTestRecipe.Ingredients
Enclosing class:
RecipeBookTestRecipe

public static record RecipeBookTestRecipe.Ingredients(String group, List<String> pattern, Map<String,net.minecraft.world.item.crafting.Ingredient> recipe, net.minecraft.world.item.ItemStack result) extends Record
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final com.mojang.serialization.MapCodec<RecipeBookTestRecipe.Ingredients>
     
    private final String
    The field for the group record component.
    private final List<String>
    The field for the pattern record component.
    private final Map<String,net.minecraft.world.item.crafting.Ingredient>
    The field for the recipe record component.
    private final net.minecraft.world.item.ItemStack
    The field for the result record component.
    private static final Function<String,com.mojang.serialization.DataResult<String>>
     
    private static final Function<String,com.mojang.serialization.DataResult<String>>
     
    private static final Function<List<String>,com.mojang.serialization.DataResult<List<String>>>
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    Ingredients(String group, List<String> pattern, Map<String,net.minecraft.world.item.crafting.Ingredient> recipe, net.minecraft.world.item.ItemStack result)
    Creates an instance of a Ingredients record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    final boolean
    Indicates whether some other object is "equal to" this one.
    Returns the value of the group record component.
    final int
    Returns a hash code value for this object.
    Returns the value of the pattern record component.
    Map<String,net.minecraft.world.item.crafting.Ingredient>
    Returns the value of the recipe record component.
    net.minecraft.world.item.ItemStack
    Returns the value of the result record component.
    final String
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • group

      private final String group
      The field for the group record component.
    • pattern

      private final List<String> pattern
      The field for the pattern record component.
    • recipe

      private final Map<String,net.minecraft.world.item.crafting.Ingredient> recipe
      The field for the recipe record component.
    • result

      private final net.minecraft.world.item.ItemStack result
      The field for the result record component.
    • VERIFY_LENGTH_2

      private static final Function<String,com.mojang.serialization.DataResult<String>> VERIFY_LENGTH_2
    • VERIFY_SIZE

      private static final Function<List<String>,com.mojang.serialization.DataResult<List<String>>> VERIFY_SIZE
    • VERIFY_LENGTH_1

      private static final Function<String,com.mojang.serialization.DataResult<String>> VERIFY_LENGTH_1
    • CODEC

      public static final com.mojang.serialization.MapCodec<RecipeBookTestRecipe.Ingredients> CODEC
  • Constructor Details

    • Ingredients

      public Ingredients(String group, List<String> pattern, Map<String,net.minecraft.world.item.crafting.Ingredient> recipe, net.minecraft.world.item.ItemStack result)
      Creates an instance of a Ingredients record class.
      Parameters:
      group - the value for the group record component
      pattern - the value for the pattern record component
      recipe - the value for the recipe record component
      result - the value for the result record component
  • 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 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.
    • group

      public String group()
      Returns the value of the group record component.
      Returns:
      the value of the group record component
    • pattern

      public List<String> pattern()
      Returns the value of the pattern record component.
      Returns:
      the value of the pattern record component
    • recipe

      public Map<String,net.minecraft.world.item.crafting.Ingredient> recipe()
      Returns the value of the recipe record component.
      Returns:
      the value of the recipe record component
    • result

      public net.minecraft.world.item.ItemStack result()
      Returns the value of the result record component.
      Returns:
      the value of the result record component