Record Class ServerMetadataS2CPacket
java.lang.Object
java.lang.Record
net.minecraft.network.packet.s2c.play.ServerMetadataS2CPacket
- Record Components:
description
-favicon
-
- All Implemented Interfaces:
Packet<ClientPlayPacketListener>
public record ServerMetadataS2CPacket(Text description, Optional<byte[]> favicon)
extends Record
implements Packet<ClientPlayPacketListener>
- Mappings:
Namespace Name official aed
intermediary net/minecraft/class_7495
named net/minecraft/network/packet/s2c/play/ServerMetadataS2CPacket
official b
intermediary comp_2277
named description
official c
intermediary comp_2278
named favicon
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final PacketCodec
<ByteBuf, ServerMetadataS2CPacket> private final Text
The field for thedescription
record component.private final Optional
<byte[]> The field for thefavicon
record component. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
apply
(ClientPlayPacketListener clientPlayPacketListener) Returns the value of thedescription
record component.final boolean
Indicates whether some other object is "equal to" this one.Optional
<byte[]> favicon()
Returns the value of thefavicon
record component.final int
hashCode()
Returns a hash code value for this object.final String
toString()
Returns a string representation of this record class.Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
Methods inherited from interface net.minecraft.network.packet.Packet
isWritingErrorSkippable, transitionsNetworkState
-
Field Details
-
description
The field for thedescription
record component. -
favicon
The field for thefavicon
record component. -
CODEC
- Mappings:
Namespace Name Mixin selector official a
Laed;a:Lys;
intermediary field_47966
Lnet/minecraft/class_7495;field_47966:Lnet/minecraft/class_9139;
named CODEC
Lnet/minecraft/network/packet/s2c/play/ServerMetadataS2CPacket;CODEC:Lnet/minecraft/network/codec/PacketCodec;
-
-
Constructor Details
-
ServerMetadataS2CPacket
-
-
Method Details
-
getPacketId
- Specified by:
getPacketId
in interfacePacket<ClientPlayPacketListener>
- Mappings:
Namespace Name Mixin selector official a
Lzb;a()Lzd;
intermediary method_55846
Lnet/minecraft/class_2596;method_55846()Lnet/minecraft/class_9145;
named getPacketId
Lnet/minecraft/network/packet/Packet;getPacketId()Lnet/minecraft/network/packet/PacketType;
-
apply
- Specified by:
apply
in interfacePacket<ClientPlayPacketListener>
- Mappings:
Namespace Name Mixin selector official a
Laed;a(Labm;)V
intermediary method_44131
Lnet/minecraft/class_7495;method_44131(Lnet/minecraft/class_2602;)V
named apply
Lnet/minecraft/network/packet/s2c/play/ServerMetadataS2CPacket;apply(Lnet/minecraft/network/listener/ClientPlayPacketListener;)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)
. -
description
Returns the value of thedescription
record component.- Returns:
- the value of the
description
record component
-
favicon
Returns the value of thefavicon
record component.- Returns:
- the value of the
favicon
record component
-