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 official cs$a
intermediary net/minecraft/class_8508$class_8509
named net/minecraft/advancement/criterion/RecipeCraftedCriterion$Conditions
official b
intermediary comp_2029
named player
official c
intermediary comp_2087
named recipeId
official d
intermediary comp_2088
named ingredients
-
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) 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()
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 official a
Lcs$a;a:Lcom/mojang/serialization/Codec;
intermediary field_47327
Lnet/minecraft/class_8508$class_8509;field_47327:Lcom/mojang/serialization/Codec;
named CODEC
Lnet/minecraft/advancement/criterion/RecipeCraftedCriterion$Conditions;CODEC:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
Conditions
public Conditions(Optional<LootContextPredicate> playerPredicate, Identifier recipeId, List<ItemPredicate> ingredients) - Mappings:
Namespace Name Mixin selector official <init>
Lcs$a;<init>(Ljava/util/Optional;Lahg;Ljava/util/List;)V
intermediary <init>
Lnet/minecraft/class_8508$class_8509;<init>(Ljava/util/Optional;Lnet/minecraft/class_2960;Ljava/util/List;)V
named <init>
Lnet/minecraft/advancement/criterion/RecipeCraftedCriterion$Conditions;<init>(Ljava/util/Optional;Lnet/minecraft/util/Identifier;Ljava/util/List;)V
-
-
Method Details
-
create
public static AdvancementCriterion<RecipeCraftedCriterion.Conditions> create(Identifier recipeId, List<ItemPredicate.Builder> ingredients) - Mappings:
Namespace Name Mixin selector official a
Lcs$a;a(Lahg;Ljava/util/List;)Lan;
intermediary method_51353
Lnet/minecraft/class_8508$class_8509;method_51353(Lnet/minecraft/class_2960;Ljava/util/List;)Lnet/minecraft/class_175;
named create
Lnet/minecraft/advancement/criterion/RecipeCraftedCriterion$Conditions;create(Lnet/minecraft/util/Identifier;Ljava/util/List;)Lnet/minecraft/advancement/AdvancementCriterion;
-
create
- Mappings:
Namespace Name Mixin selector official a
Lcs$a;a(Lahg;)Lan;
intermediary method_51352
Lnet/minecraft/class_8508$class_8509;method_51352(Lnet/minecraft/class_2960;)Lnet/minecraft/class_175;
named create
Lnet/minecraft/advancement/criterion/RecipeCraftedCriterion$Conditions;create(Lnet/minecraft/util/Identifier;)Lnet/minecraft/advancement/AdvancementCriterion;
-
matches
- Mappings:
Namespace Name Mixin selector official b
Lcs$a;b(Lahg;Ljava/util/List;)Z
intermediary method_51354
Lnet/minecraft/class_8508$class_8509;method_51354(Lnet/minecraft/class_2960;Ljava/util/List;)Z
named matches
Lnet/minecraft/advancement/criterion/RecipeCraftedCriterion$Conditions;matches(Lnet/minecraft/util/Identifier;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
- Specified by:
player
in interfaceAbstractCriterion.Conditions
- Mappings:
Namespace Name Mixin selector official a
Lcv$a;a()Ljava/util/Optional;
intermediary comp_2029
Lnet/minecraft/class_4558$class_8788;comp_2029()Ljava/util/Optional;
named player
Lnet/minecraft/advancement/criterion/AbstractCriterion$Conditions;player()Ljava/util/Optional;
-
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
-