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 official cq$b
intermediary net/minecraft/class_4553$class_4555
named net/minecraft/predicate/entity/PlayerPredicate$CompletedAdvancementPredicate
official c
intermediary comp_1824
named done
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<PlayerPredicate.CompletedAdvancementPredicate>
private final boolean
The field for thedone
record component. -
Constructor Summary
ConstructorDescriptionCompletedAdvancementPredicate
(boolean done) Creates an instance of aCompletedAdvancementPredicate
record class. -
Method Summary
Modifier and TypeMethodDescriptionboolean
done()
Returns the value of thedone
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.boolean
test
(AdvancementProgress advancementProgress) final String
toString()
Returns a string representation of this record class.
-
Field Details
-
done
private final boolean doneThe field for thedone
record component. -
CODEC
public static final com.mojang.serialization.Codec<PlayerPredicate.CompletedAdvancementPredicate> CODEC- Mappings:
Namespace Name Mixin selector official a
Lcq$b;a:Lcom/mojang/serialization/Codec;
intermediary field_45772
Lnet/minecraft/class_4553$class_4555;field_45772:Lcom/mojang/serialization/Codec;
named CODEC
Lnet/minecraft/predicate/entity/PlayerPredicate$CompletedAdvancementPredicate;CODEC:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
CompletedAdvancementPredicate
CompletedAdvancementPredicate(boolean done) Creates an instance of aCompletedAdvancementPredicate
record class.- Parameters:
done
- the value for thedone
record component
-
-
Method Details
-
test
- Specified by:
test
in interfacePredicate<AdvancementProgress>
- Mappings:
Namespace Name Mixin selector official a
Lcq$b;a(Lah;)Z
intermediary method_22505
Lnet/minecraft/class_4553$class_4555;method_22505(Lnet/minecraft/class_167;)Z
named test
Lnet/minecraft/predicate/entity/PlayerPredicate$CompletedAdvancementPredicate;test(Lnet/minecraft/advancement/AdvancementProgress;)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 with '=='. -
done
public boolean done()Returns the value of thedone
record component.- Returns:
- the value of the
done
record component
-