Package net.minecraft.advancement
Record Class PlayerAdvancementTracker.ProgressMap
java.lang.Object
java.lang.Record
net.minecraft.advancement.PlayerAdvancementTracker.ProgressMap
- Record Components:
map
-
- Enclosing class:
PlayerAdvancementTracker
private static record PlayerAdvancementTracker.ProgressMap(Map<Identifier,AdvancementProgress> map)
extends Record
- Mappings:
Namespace Name official afe$a
intermediary net/minecraft/class_2985$class_8780
named net/minecraft/advancement/PlayerAdvancementTracker$ProgressMap
official b
intermediary comp_1921
named map
-
Field Summary
Modifier and TypeFieldDescriptionstatic final com.mojang.serialization.Codec<PlayerAdvancementTracker.ProgressMap>
private final Map<Identifier,
AdvancementProgress> The field for themap
record component. -
Constructor Summary
ConstructorDescriptionCreates an instance of aProgressMap
record class. -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.void
forEach
(BiConsumer<Identifier, AdvancementProgress> consumer) final int
hashCode()
Returns a hash code value for this object.map()
Returns the value of themap
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
map
The field for themap
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector official a
Lafe$a;a:Lcom/mojang/serialization/Codec;
intermediary field_46075
Lnet/minecraft/class_2985$class_8780;field_46075:Lcom/mojang/serialization/Codec;
named CODEC
Lnet/minecraft/advancement/PlayerAdvancementTracker$ProgressMap;CODEC:Lcom/mojang/serialization/Codec;
-
-
Constructor Details
-
ProgressMap
ProgressMap(Map<Identifier, AdvancementProgress> map) Creates an instance of aProgressMap
record class.- Parameters:
map
- the value for themap
record component
-
-
Method Details
-
forEach
- Mappings:
Namespace Name Mixin selector official a
Lafe$a;a(Ljava/util/function/BiConsumer;)V
intermediary method_53644
Lnet/minecraft/class_2985$class_8780;method_53644(Ljava/util/function/BiConsumer;)V
named forEach
Lnet/minecraft/advancement/PlayerAdvancementTracker$ProgressMap;forEach(Ljava/util/function/BiConsumer;)V
-
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)
. -
map
Returns the value of themap
record component.- Returns:
- the value of the
map
record component
-