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 Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec
<RecipeCraftedCriterion.Conditions> private final List
<ItemPredicate> The field for theingredients
record component.private final Optional
<LootContextPredicate> The field for theplayer
record component.private final Identifier
The field for therecipeId
record component. -
Constructor Summary
ConstructorDescriptionConditions
(Optional<LootContextPredicate> playerPredicate, Identifier recipeId, List<ItemPredicate> ingredients) -
Method Summary
Modifier and TypeMethodDescriptioncreate
(Identifier recipeId) create
(Identifier recipeId, List<ItemPredicate.Builder> ingredients) createCrafterRecipeCrafted
(Identifier recipeId) final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of theingredients
record component.(package private) boolean
matches
(Identifier recipeId, List<ItemStack> ingredients) player()
Returns the value of theplayer
record component.recipeId()
Returns the value of therecipeId
record component.final String
toString()
Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.advancement.criterion.AbstractCriterion.Conditions
validate
-
Field Details
-
player
The field for theplayer
record component. -
recipeId
The field for therecipeId
record component. -
ingredients
The field for theingredients
record component. -
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
public static AdvancementCriterion<RecipeCraftedCriterion.Conditions> create(Identifier recipeId, List<ItemPredicate.Builder> ingredients) - 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
- 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
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. -
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. -
equals
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 withObjects::equals(Object,Object)
. -
player
Returns the value of theplayer
record component.- Specified by:
player
in interfaceAbstractCriterion.Conditions
- Returns:
- the value of the
player
record component
-
recipeId
Returns the value of therecipeId
record component.- Returns:
- the value of the
recipeId
record component
-
ingredients
Returns the value of theingredients
record component.- Returns:
- the value of the
ingredients
record component
-