Package net.minecraft.predicate.entity
Record Class PlayerPredicate.CompletedAdvancementPredicate
java.lang.Object
java.lang.Record
net.minecraft.predicate.entity.PlayerPredicate.CompletedAdvancementPredicate
- Record Components:
- done-
- All Implemented Interfaces:
- Predicate<AdvancementProgress>,- PlayerPredicate.AdvancementPredicate
- Enclosing class:
- PlayerPredicate
private static record PlayerPredicate.CompletedAdvancementPredicate(boolean done)
extends Record
implements PlayerPredicate.AdvancementPredicate
- Mappings:
- Namespace - Name - named - net/minecraft/predicate/entity/PlayerPredicate$CompletedAdvancementPredicate- intermediary - net/minecraft/class_4553$class_4555- official - ds$b- named - done- intermediary - comp_1824- official - c
- 
Field SummaryFieldsModifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<PlayerPredicate.CompletedAdvancementPredicate> private final booleanThe field for thedonerecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionCompletedAdvancementPredicate(boolean done) Creates an instance of aCompletedAdvancementPredicaterecord class.
- 
Method SummaryModifier and TypeMethodDescriptionbooleandone()Returns the value of thedonerecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.booleantest(AdvancementProgress advancementProgress) final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
doneprivate final boolean doneThe field for thedonerecord component.
- 
CODECpublic static final com.mojang.serialization.Codec<PlayerPredicate.CompletedAdvancementPredicate> CODEC- Mappings:
- Namespace - Name - Mixin selector - named - CODEC- Lnet/minecraft/predicate/entity/PlayerPredicate$CompletedAdvancementPredicate;CODEC:Lcom/mojang/serialization/Codec;- intermediary - field_45772- Lnet/minecraft/class_4553$class_4555;field_45772:Lcom/mojang/serialization/Codec;- official - a- Lds$b;a:Lcom/mojang/serialization/Codec;
 
 
- 
- 
Constructor Details- 
CompletedAdvancementPredicateCompletedAdvancementPredicate(boolean done) Creates an instance of aCompletedAdvancementPredicaterecord class.- Parameters:
- done- the value for the- donerecord component
 
 
- 
- 
Method Details- 
test- Specified by:
- testin interface- Predicate<AdvancementProgress>
- Mappings:
- Namespace - Name - Mixin selector - named - test- Lnet/minecraft/predicate/entity/PlayerPredicate$CompletedAdvancementPredicate;test(Lnet/minecraft/advancement/AdvancementProgress;)Z- intermediary - method_22505- Lnet/minecraft/class_4553$class_4555;method_22505(Lnet/minecraft/class_167;)Z- official - a- Lds$b;a(Lak;)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 with '=='.
- 
donepublic boolean done()Returns the value of thedonerecord component.- Returns:
- the value of the donerecord component
 
 
-