Record Class ItemDurabilityChangedCriterion.Conditions
java.lang.Object
java.lang.Record
net.minecraft.advancement.criterion.ItemDurabilityChangedCriterion.Conditions
- Record Components:
- player-
- item-
- durability-
- delta-
- All Implemented Interfaces:
- AbstractCriterion.Conditions,- CriterionConditions
- Enclosing class:
- ItemDurabilityChangedCriterion
public static record ItemDurabilityChangedCriterion.Conditions(Optional<LootContextPredicate> player, Optional<ItemPredicate> item, NumberRange.IntRange durability, NumberRange.IntRange delta)
extends Record
implements AbstractCriterion.Conditions
- Mappings:
- Namespace - Name - named - net/minecraft/advancement/criterion/ItemDurabilityChangedCriterion$Conditions- intermediary - net/minecraft/class_2069$class_2071- official - cp$a- named - player- intermediary - comp_2029- official - b- named - item- intermediary - comp_2062- official - c- named - durability- intermediary - comp_2063- official - d- named - delta- intermediary - comp_2064- official - e
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<ItemDurabilityChangedCriterion.Conditions> private final NumberRange.IntRangeThe field for thedeltarecord component.private final NumberRange.IntRangeThe field for thedurabilityrecord component.private final Optional<ItemPredicate> The field for theitemrecord component.private final Optional<LootContextPredicate> The field for theplayerrecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionConditions(Optional<LootContextPredicate> playerPredicate, Optional<ItemPredicate> item, NumberRange.IntRange durability, NumberRange.IntRange delta) 
- 
Method SummaryModifier and TypeMethodDescriptioncreate(Optional<LootContextPredicate> playerPredicate, Optional<ItemPredicate> item, NumberRange.IntRange durability) create(Optional<ItemPredicate> item, NumberRange.IntRange durability) delta()Returns the value of thedeltarecord component.Returns the value of thedurabilityrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.item()Returns the value of theitemrecord component.booleanplayer()Returns the value of theplayerrecord component.final StringtoString()Returns a string representation of this record class.Methods inherited from class java.lang.Objectclone, finalize, getClass, notify, notifyAll, wait, wait, waitMethods inherited from interface net.minecraft.advancement.criterion.AbstractCriterion.Conditionsvalidate
- 
Field Details- 
playerThe field for theplayerrecord component.
- 
itemThe field for theitemrecord component.
- 
durabilityThe field for thedurabilityrecord component.
- 
deltaThe field for thedeltarecord component.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/advancement/criterion/ItemDurabilityChangedCriterion$Conditions;CODEC:Lcom/mojang/serialization/Codec;- intermediary - field_47266- Lnet/minecraft/class_2069$class_2071;field_47266:Lcom/mojang/serialization/Codec;- official - a- Lcp$a;a:Lcom/mojang/serialization/Codec;
 
 
- 
- 
Constructor Details- 
Conditionspublic Conditions(Optional<LootContextPredicate> playerPredicate, Optional<ItemPredicate> item, NumberRange.IntRange durability, NumberRange.IntRange delta) - Mappings:
- Namespace - Name - Mixin selector - named - <init>- Lnet/minecraft/advancement/criterion/ItemDurabilityChangedCriterion$Conditions;<init>(Ljava/util/Optional;Ljava/util/Optional;Lnet/minecraft/predicate/NumberRange$IntRange;Lnet/minecraft/predicate/NumberRange$IntRange;)V- intermediary - <init>- Lnet/minecraft/class_2069$class_2071;<init>(Ljava/util/Optional;Ljava/util/Optional;Lnet/minecraft/class_2096$class_2100;Lnet/minecraft/class_2096$class_2100;)V- official - <init>- Lcp$a;<init>(Ljava/util/Optional;Ljava/util/Optional;Ldk$d;Ldk$d;)V
 
 
- 
- 
Method Details- 
createpublic static AdvancementCriterion<ItemDurabilityChangedCriterion.Conditions> create(Optional<ItemPredicate> item, NumberRange.IntRange durability) - Mappings:
- Namespace - Name - Mixin selector - named - create- Lnet/minecraft/advancement/criterion/ItemDurabilityChangedCriterion$Conditions;create(Ljava/util/Optional;Lnet/minecraft/predicate/NumberRange$IntRange;)Lnet/minecraft/advancement/AdvancementCriterion;- intermediary - method_35229- Lnet/minecraft/class_2069$class_2071;method_35229(Ljava/util/Optional;Lnet/minecraft/class_2096$class_2100;)Lnet/minecraft/class_175;- official - a- Lcp$a;a(Ljava/util/Optional;Ldk$d;)Laq;
 
- 
createpublic static AdvancementCriterion<ItemDurabilityChangedCriterion.Conditions> create(Optional<LootContextPredicate> playerPredicate, Optional<ItemPredicate> item, NumberRange.IntRange durability) - Mappings:
- Namespace - Name - Mixin selector - named - create- Lnet/minecraft/advancement/criterion/ItemDurabilityChangedCriterion$Conditions;create(Ljava/util/Optional;Ljava/util/Optional;Lnet/minecraft/predicate/NumberRange$IntRange;)Lnet/minecraft/advancement/AdvancementCriterion;- intermediary - method_8967- Lnet/minecraft/class_2069$class_2071;method_8967(Ljava/util/Optional;Ljava/util/Optional;Lnet/minecraft/class_2096$class_2100;)Lnet/minecraft/class_175;- official - a- Lcp$a;a(Ljava/util/Optional;Ljava/util/Optional;Ldk$d;)Laq;
 
- 
matches- Mappings:
- Namespace - Name - Mixin selector - named - matches- Lnet/minecraft/advancement/criterion/ItemDurabilityChangedCriterion$Conditions;matches(Lnet/minecraft/item/ItemStack;I)Z- intermediary - method_8968- Lnet/minecraft/class_2069$class_2071;method_8968(Lnet/minecraft/class_1799;I)Z- official - a- Lcp$a;a(Lcwq;I)Z
 
- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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).
- 
playerReturns the value of theplayerrecord component.- Specified by:
- playerin interface- AbstractCriterion.Conditions
- Returns:
- the value of the playerrecord component
 
- 
itemReturns the value of theitemrecord component.- Returns:
- the value of the itemrecord component
 
- 
durabilityReturns the value of thedurabilityrecord component.- Returns:
- the value of the durabilityrecord component
 
- 
deltaReturns the value of thedeltarecord component.- Returns:
- the value of the deltarecord component
 
 
-