Record Class ClientboundServerDataPacket
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.game.ClientboundServerDataPacket
- All Implemented Interfaces:
Packet<ClientGamePacketListener>
public record ClientboundServerDataPacket(Component motd, Optional<byte[]> iconBytes)
extends Record
implements Packet<ClientGamePacketListener>
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final Optional<byte[]> The field for theiconBytesrecord component.private final ComponentThe field for themotdrecord component.static final StreamCodec<io.netty.buffer.ByteBuf, ClientboundServerDataPacket> -
Constructor Summary
ConstructorsConstructorDescriptionClientboundServerDataPacket(Component motd, Optional<byte[]> iconBytes) Creates an instance of aClientboundServerDataPacketrecord 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 PacketListener for processing.final inthashCode()Returns a hash code value for this object.Optional<byte[]> Returns the value of theiconBytesrecord component.motd()Returns the value of themotdrecord component.final StringtoString()Returns a string representation of this record class.type()Methods inherited from interface Packet
isSkippable, isTerminal
-
Field Details
-
motd
The field for themotdrecord component. -
iconBytes
The field for theiconBytesrecord component. -
STREAM_CODEC
-
-
Constructor Details
-
ClientboundServerDataPacket
-
-
Method Details
-
type
- Specified by:
typein interfacePacket<ClientGamePacketListener>
-
handle
Description copied from interface:PacketPasses this Packet on to the PacketListener 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). -
motd
Returns the value of themotdrecord component.- Returns:
- the value of the
motdrecord component
-
iconBytes
Returns the value of theiconBytesrecord component.- Returns:
- the value of the
iconBytesrecord component
-