Record Class RecipeBookTestRecipe.Ingredients

java.lang.Object
java.lang.Record
net.minecraftforge.debug.recipe.recipebook.RecipeBookTestRecipe.Ingredients
Enclosing class:
RecipeBookTestRecipe

public static record RecipeBookTestRecipe.Ingredients(String group, List<String> pattern, Map<String,Ingredient> recipe, ItemStack result) extends Record
  • 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,Ingredient> recipe
      The field for the recipe record component.
    • result

      private final 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
    • INGREDIENT_CODEC

      public static final com.mojang.serialization.Codec<Ingredient> INGREDIENT_CODEC
    • CODEC

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

    • Ingredients

      public Ingredients(String group, List<String> pattern, Map<String,Ingredient> recipe, 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,Ingredient> recipe()
      Returns the value of the recipe record component.
      Returns:
      the value of the recipe record component
    • result

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