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$aintermediary net/minecraft/class_8508$class_8509named net/minecraft/advancement/criterion/RecipeCraftedCriterion$Conditionsofficial bintermediary comp_2029named playerofficial cintermediary comp_2087named recipeIdofficial dintermediary comp_2088named ingredients
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<RecipeCraftedCriterion.Conditions>private final List<ItemPredicate>The field for theingredientsrecord component.private final Optional<LootContextPredicate>The field for theplayerrecord component.private final IdentifierThe field for therecipeIdrecord component. -
Constructor Summary
ConstructorsConstructorDescriptionConditions(Optional<LootContextPredicate> playerPredicate, Identifier recipeId, List<ItemPredicate> ingredients) -
Method Summary
Modifier and TypeMethodDescriptioncreate(Identifier recipeId) create(Identifier recipeId, List<ItemPredicate.Builder> ingredients) final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theingredientsrecord component.(package private) booleanmatches(Identifier recipeId, List<ItemStack> ingredients) player()recipeId()Returns the value of therecipeIdrecord component.final StringtoString()Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.advancement.criterion.AbstractCriterion.Conditions
validate
-
Field Details
-
player
The field for theplayerrecord component. -
recipeId
The field for therecipeIdrecord component. -
ingredients
The field for theingredientsrecord component. -
CODEC
- Mappings:
Namespace Name Mixin selector official aLcs$a;a:Lcom/mojang/serialization/Codec;intermediary field_47327Lnet/minecraft/class_8508$class_8509;field_47327:Lcom/mojang/serialization/Codec;named CODECLnet/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;)Vintermediary <init>Lnet/minecraft/class_8508$class_8509;<init>(Ljava/util/Optional;Lnet/minecraft/class_2960;Ljava/util/List;)Vnamed <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 aLcs$a;a(Lahg;Ljava/util/List;)Lan;intermediary method_51353Lnet/minecraft/class_8508$class_8509;method_51353(Lnet/minecraft/class_2960;Ljava/util/List;)Lnet/minecraft/class_175;named createLnet/minecraft/advancement/criterion/RecipeCraftedCriterion$Conditions;create(Lnet/minecraft/util/Identifier;Ljava/util/List;)Lnet/minecraft/advancement/AdvancementCriterion;
-
create
- Mappings:
Namespace Name Mixin selector official aLcs$a;a(Lahg;)Lan;intermediary method_51352Lnet/minecraft/class_8508$class_8509;method_51352(Lnet/minecraft/class_2960;)Lnet/minecraft/class_175;named createLnet/minecraft/advancement/criterion/RecipeCraftedCriterion$Conditions;create(Lnet/minecraft/util/Identifier;)Lnet/minecraft/advancement/AdvancementCriterion;
-
matches
- Mappings:
Namespace Name Mixin selector official bLcs$a;b(Lahg;Ljava/util/List;)Zintermediary method_51354Lnet/minecraft/class_8508$class_8509;method_51354(Lnet/minecraft/class_2960;Ljava/util/List;)Znamed matchesLnet/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:
playerin interfaceAbstractCriterion.Conditions- Mappings:
Namespace Name Mixin selector official aLcv$a;a()Ljava/util/Optional;intermediary comp_2029Lnet/minecraft/class_4558$class_8788;comp_2029()Ljava/util/Optional;named playerLnet/minecraft/advancement/criterion/AbstractCriterion$Conditions;player()Ljava/util/Optional;
-
recipeId
Returns the value of therecipeIdrecord component.- Returns:
- the value of the
recipeIdrecord component
-
ingredients
Returns the value of theingredientsrecord component.- Returns:
- the value of the
ingredientsrecord component
-