Record Class AdvancementsPacket.AdvancementMapping
java.lang.Object
java.lang.Record
net.minestom.server.network.packet.server.play.AdvancementsPacket.AdvancementMapping
- All Implemented Interfaces:
ComponentHolder<AdvancementsPacket.AdvancementMapping>
- Enclosing class:
AdvancementsPacket
public static record AdvancementsPacket.AdvancementMapping(@NotNull String key, @NotNull AdvancementsPacket.Advancement value)
extends Record
implements ComponentHolder<AdvancementsPacket.AdvancementMapping>
AdvancementMapping maps the namespaced ID to the Advancement.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final NetworkBuffer.Type
<AdvancementsPacket.AdvancementMapping> -
Constructor Summary
ConstructorsConstructorDescriptionAdvancementMapping
(@NotNull String key, @NotNull AdvancementsPacket.Advancement value) Creates an instance of aAdvancementMapping
record class. -
Method Summary
Modifier and TypeMethodDescription@NotNull Collection
<Component> Gets the components held by this object.copyWithOperator
(@NotNull UnaryOperator<Component> operator) Returns a copy of this object.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.@NotNull String
key()
Returns the value of thekey
record component.final String
toString()
Returns a string representation of this record class.@NotNull AdvancementsPacket.Advancement
value()
Returns the value of thevalue
record component.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minestom.server.adventure.ComponentHolder
visitComponents
-
Field Details
-
SERIALIZER
-
-
Constructor Details
-
AdvancementMapping
public AdvancementMapping(@NotNull @NotNull String key, @NotNull @NotNull AdvancementsPacket.Advancement value) Creates an instance of aAdvancementMapping
record class.- Parameters:
key
- the value for thekey
record componentvalue
- the value for thevalue
record component
-
-
Method Details
-
components
Description copied from interface:ComponentHolder
Gets the components held by this object.- Specified by:
components
in interfaceComponentHolder<AdvancementsPacket.AdvancementMapping>
- Returns:
- the components
-
copyWithOperator
@NotNull public @NotNull AdvancementsPacket.AdvancementMapping copyWithOperator(@NotNull @NotNull UnaryOperator<Component> operator) Description copied from interface:ComponentHolder
Returns a copy of this object. For each component this object holds, the operator is applied to the copy before returning.- Specified by:
copyWithOperator
in interfaceComponentHolder<AdvancementsPacket.AdvancementMapping>
- Parameters:
operator
- the operator- Returns:
- the copy
-
toString
-
hashCode
-
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)
. -
key
Returns the value of thekey
record component.- Returns:
- the value of the
key
record component
-
value
Returns the value of thevalue
record component.- Returns:
- the value of the
value
record component
-