Record Class RecipeCraftedCriterion.Conditions

java.lang.Object
java.lang.Record
net.minecraft.advancement.criterion.RecipeCraftedCriterion.Conditions
Record Components:
player -
recipeId -
ingredients -
All Implemented Interfaces:
AbstractCriterion.Conditions, CriterionConditions
Enclosing class:
RecipeCraftedCriterion

public static record RecipeCraftedCriterion.Conditions(Optional<LootContextPredicate> player, Identifier recipeId, List<ItemPredicate> ingredients) extends Record implements AbstractCriterion.Conditions
Mappings:
Namespace Name
named net/minecraft/advancement/criterion/RecipeCraftedCriterion$Conditions
intermediary net/minecraft/class_8508$class_8509
official dn$a
named player
intermediary comp_2029
official b
named recipeId
intermediary comp_2087
official c
named ingredients
intermediary comp_2088
official d
  • Field Details

    • player

      private final Optional<LootContextPredicate> player
      The field for the player record component.
    • recipeId

      private final Identifier recipeId
      The field for the recipeId record component.
    • ingredients

      private final List<ItemPredicate> ingredients
      The field for the ingredients record component.
    • CODEC

      public static final com.mojang.serialization.Codec<RecipeCraftedCriterion.Conditions> CODEC
      Mappings:
      Namespace Name Mixin selector
      named CODEC Lnet/minecraft/advancement/criterion/RecipeCraftedCriterion$Conditions;CODEC:Lcom/mojang/serialization/Codec;
      intermediary field_47327 Lnet/minecraft/class_8508$class_8509;field_47327:Lcom/mojang/serialization/Codec;
      official a Ldn$a;a:Lcom/mojang/serialization/Codec;
  • Constructor Details

    • Conditions

      public Conditions(Optional<LootContextPredicate> playerPredicate, Identifier recipeId, List<ItemPredicate> ingredients)
      Mappings:
      Namespace Name Mixin selector
      named <init> Lnet/minecraft/advancement/criterion/RecipeCraftedCriterion$Conditions;<init>(Ljava/util/Optional;Lnet/minecraft/util/Identifier;Ljava/util/List;)V
      intermediary <init> Lnet/minecraft/class_8508$class_8509;<init>(Ljava/util/Optional;Lnet/minecraft/class_2960;Ljava/util/List;)V
      official <init> Ldn$a;<init>(Ljava/util/Optional;Lalf;Ljava/util/List;)V
  • Method Details

    • create

      Mappings:
      Namespace Name Mixin selector
      named create Lnet/minecraft/advancement/criterion/RecipeCraftedCriterion$Conditions;create(Lnet/minecraft/util/Identifier;Ljava/util/List;)Lnet/minecraft/advancement/AdvancementCriterion;
      intermediary method_51353 Lnet/minecraft/class_8508$class_8509;method_51353(Lnet/minecraft/class_2960;Ljava/util/List;)Lnet/minecraft/class_175;
      official a Ldn$a;a(Lalf;Ljava/util/List;)Lan;
    • create

      Mappings:
      Namespace Name Mixin selector
      named create Lnet/minecraft/advancement/criterion/RecipeCraftedCriterion$Conditions;create(Lnet/minecraft/util/Identifier;)Lnet/minecraft/advancement/AdvancementCriterion;
      intermediary method_51352 Lnet/minecraft/class_8508$class_8509;method_51352(Lnet/minecraft/class_2960;)Lnet/minecraft/class_175;
      official a Ldn$a;a(Lalf;)Lan;
    • createCrafterRecipeCrafted

      public static AdvancementCriterion<RecipeCraftedCriterion.Conditions> createCrafterRecipeCrafted(Identifier recipeId)
      Mappings:
      Namespace Name Mixin selector
      named createCrafterRecipeCrafted Lnet/minecraft/advancement/criterion/RecipeCraftedCriterion$Conditions;createCrafterRecipeCrafted(Lnet/minecraft/util/Identifier;)Lnet/minecraft/advancement/AdvancementCriterion;
      intermediary method_58450 Lnet/minecraft/class_8508$class_8509;method_58450(Lnet/minecraft/class_2960;)Lnet/minecraft/class_175;
      official b Ldn$a;b(Lalf;)Lan;
    • matches

      boolean matches(Identifier recipeId, List<ItemStack> ingredients)
      Mappings:
      Namespace Name Mixin selector
      named matches Lnet/minecraft/advancement/criterion/RecipeCraftedCriterion$Conditions;matches(Lnet/minecraft/util/Identifier;Ljava/util/List;)Z
      intermediary method_51354 Lnet/minecraft/class_8508$class_8509;method_51354(Lnet/minecraft/class_2960;Ljava/util/List;)Z
      official b Ldn$a;b(Lalf;Ljava/util/List;)Z
    • 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. All components in this record class are compared with Objects::equals(Object,Object).
      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.
    • player

      public Optional<LootContextPredicate> player()
      Returns the value of the player record component.
      Specified by:
      player in interface AbstractCriterion.Conditions
      Returns:
      the value of the player record component
    • recipeId

      public Identifier recipeId()
      Returns the value of the recipeId record component.
      Returns:
      the value of the recipeId record component
    • ingredients

      public List<ItemPredicate> ingredients()
      Returns the value of the ingredients record component.
      Returns:
      the value of the ingredients record component