Record Class ClientboundAwardStatsPacket
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.game.ClientboundAwardStatsPacket
- All Implemented Interfaces:
Packet<ClientGamePacketListener>
public record ClientboundAwardStatsPacket(it.unimi.dsi.fastutil.objects.Object2IntMap<Stat<?>> stats)
extends Record
implements Packet<ClientGamePacketListener>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate static final StreamCodec<RegistryFriendlyByteBuf, it.unimi.dsi.fastutil.objects.Object2IntMap<Stat<?>>> private final it.unimi.dsi.fastutil.objects.Object2IntMap<Stat<?>> The field for thestatsrecord component.static final StreamCodec<RegistryFriendlyByteBuf, ClientboundAwardStatsPacket> -
Constructor Summary
ConstructorsConstructorDescriptionClientboundAwardStatsPacket(it.unimi.dsi.fastutil.objects.Object2IntMap<Stat<?>> stats) Creates an instance of aClientboundAwardStatsPacketrecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.voidhandle(ClientGamePacketListener listener) Passes this Packet on to the NetHandler for processing.final inthashCode()Returns a hash code value for this object.it.unimi.dsi.fastutil.objects.Object2IntMap<Stat<?>> stats()Returns the value of thestatsrecord component.final StringtoString()Returns a string representation of this record class.type()Methods inherited from interface Packet
isSkippable, isTerminal
-
Field Details
-
stats
The field for thestatsrecord component. -
STAT_VALUES_STREAM_CODEC
private static final StreamCodec<RegistryFriendlyByteBuf, it.unimi.dsi.fastutil.objects.Object2IntMap<Stat<?>>> STAT_VALUES_STREAM_CODEC -
STREAM_CODEC
-
-
Constructor Details
-
ClientboundAwardStatsPacket
Creates an instance of aClientboundAwardStatsPacketrecord class.- Parameters:
stats- the value for thestatsrecord component
-
-
Method Details
-
type
- Specified by:
typein interfacePacket<ClientGamePacketListener>
-
handle
Passes this Packet on to the NetHandler for processing.- Specified by:
handlein interfacePacket<ClientGamePacketListener>
-
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). -
stats
Returns the value of thestatsrecord component.- Returns:
- the value of the
statsrecord component
-