Package net.minecraft.predicate.entity
Record Class PlayerPredicate.AdvancementCriteriaPredicate
java.lang.Object
java.lang.Record
net.minecraft.predicate.entity.PlayerPredicate.AdvancementCriteriaPredicate
- Record Components:
criteria
-
- All Implemented Interfaces:
Predicate<AdvancementProgress>
,PlayerPredicate.AdvancementPredicate
- Enclosing class:
PlayerPredicate
private static record PlayerPredicate.AdvancementCriteriaPredicate(Object2BooleanMap<String> criteria)
extends Record
implements PlayerPredicate.AdvancementPredicate
- Mappings:
Namespace Name named net/minecraft/predicate/entity/PlayerPredicate$AdvancementCriteriaPredicate
intermediary net/minecraft/class_4553$class_4554
official dk$a
named criteria
intermediary comp_1823
official c
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec
<PlayerPredicate.AdvancementCriteriaPredicate> private final Object2BooleanMap
<String> The field for thecriteria
record component. -
Constructor Summary
ConstructorDescriptionAdvancementCriteriaPredicate
(Object2BooleanMap<String> criteria) Creates an instance of aAdvancementCriteriaPredicate
record class. -
Method Summary
Modifier and TypeMethodDescriptioncriteria()
Returns the value of thecriteria
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
-
criteria
The field for thecriteria
record component. -
CODEC
public static final com.mojang.serialization.Codec<PlayerPredicate.AdvancementCriteriaPredicate> CODEC- Mappings:
Namespace Name Mixin selector named CODEC
Lnet/minecraft/predicate/entity/PlayerPredicate$AdvancementCriteriaPredicate;CODEC:Lcom/mojang/serialization/Codec;
intermediary field_45771
Lnet/minecraft/class_4553$class_4554;field_45771:Lcom/mojang/serialization/Codec;
official a
Ldk$a;a:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
AdvancementCriteriaPredicate
AdvancementCriteriaPredicate(Object2BooleanMap<String> criteria) Creates an instance of aAdvancementCriteriaPredicate
record class.- Parameters:
criteria
- the value for thecriteria
record component
-
-
Method Details
-
test
- Specified by:
test
in interfacePredicate<AdvancementProgress>
- Mappings:
Namespace Name Mixin selector named test
Lnet/minecraft/predicate/entity/PlayerPredicate$AdvancementCriteriaPredicate;test(Lnet/minecraft/advancement/AdvancementProgress;)Z
intermediary method_22504
Lnet/minecraft/class_4553$class_4554;method_22504(Lnet/minecraft/class_167;)Z
official a
Ldk$a;a(Lah;)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)
. -
criteria
Returns the value of thecriteria
record component.- Returns:
- the value of the
criteria
record component
-