Record Class FilledBucketCriterion.Conditions
java.lang.Object
java.lang.Record
net.minecraft.advancement.criterion.FilledBucketCriterion.Conditions
- Record Components:
- player-
- item-
- All Implemented Interfaces:
- AbstractCriterion.Conditions,- CriterionConditions
- Enclosing class:
- FilledBucketCriterion
public static record FilledBucketCriterion.Conditions(Optional<LootContextPredicate> player, Optional<ItemPredicate> item)
extends Record
implements AbstractCriterion.Conditions
- Mappings:
- Namespace - Name - named - net/minecraft/advancement/criterion/FilledBucketCriterion$Conditions- intermediary - net/minecraft/class_2054$class_2056- official - cc$a- named - player- intermediary - comp_2029- official - b- named - item- intermediary - comp_2053- official - c
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<FilledBucketCriterion.Conditions> 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) 
- 
Method SummaryModifier and TypeMethodDescriptioncreate(ItemPredicate.Builder item) 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.
- 
CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/advancement/criterion/FilledBucketCriterion$Conditions;CODEC:Lcom/mojang/serialization/Codec;- intermediary - field_47251- Lnet/minecraft/class_2054$class_2056;field_47251:Lcom/mojang/serialization/Codec;- official - a- Lcc$a;a:Lcom/mojang/serialization/Codec;
 
 
- 
- 
Constructor Details- 
Conditions- Mappings:
- Namespace - Name - Mixin selector - named - <init>- Lnet/minecraft/advancement/criterion/FilledBucketCriterion$Conditions;<init>(Ljava/util/Optional;Ljava/util/Optional;)V- intermediary - <init>- Lnet/minecraft/class_2054$class_2056;<init>(Ljava/util/Optional;Ljava/util/Optional;)V- official - <init>- Lcc$a;<init>(Ljava/util/Optional;Ljava/util/Optional;)V
 
 
- 
- 
Method Details- 
createpublic static AdvancementCriterion<FilledBucketCriterion.Conditions> create(ItemPredicate.Builder item) - Mappings:
- Namespace - Name - Mixin selector - named - create- Lnet/minecraft/advancement/criterion/FilledBucketCriterion$Conditions;create(Lnet/minecraft/predicate/item/ItemPredicate$Builder;)Lnet/minecraft/advancement/AdvancementCriterion;- intermediary - method_8937- Lnet/minecraft/class_2054$class_2056;method_8937(Lnet/minecraft/class_2073$class_2074;)Lnet/minecraft/class_175;- official - a- Lcc$a;a(Lcv$a;)Laq;
 
- 
matches- Mappings:
- Namespace - Name - Mixin selector - named - matches- Lnet/minecraft/advancement/criterion/FilledBucketCriterion$Conditions;matches(Lnet/minecraft/item/ItemStack;)Z- intermediary - method_8938- Lnet/minecraft/class_2054$class_2056;method_8938(Lnet/minecraft/class_1799;)Z- official - a- Lcc$a;a(Lcwq;)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
 
 
-