Record Class ClientboundPlayerChatPacket
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.game.ClientboundPlayerChatPacket
- All Implemented Interfaces:
Packet<ClientGamePacketListener>
public record ClientboundPlayerChatPacket(PlayerChatMessage message, ChatType.BoundNetwork chatType)
extends Record
implements Packet<ClientGamePacketListener>
-
Field Summary
Modifier and TypeFieldDescriptionprivate final ChatType.BoundNetwork
The field for thechatType
record component.private final PlayerChatMessage
The field for themessage
record component. -
Constructor Summary
ConstructorDescriptionClientboundPlayerChatPacket
(PlayerChatMessage message, ChatType.BoundNetwork chatType) Creates an instance of aClientboundPlayerChatPacket
record class.ClientboundPlayerChatPacket
(FriendlyByteBuf p_237741_) -
Method Summary
Modifier and TypeMethodDescriptionchatType()
Returns the value of thechatType
record component.final boolean
Indicates whether some other object is "equal to" this one.void
handle
(ClientGamePacketListener p_237759_) final int
hashCode()
Returns a hash code value for this object.boolean
message()
Returns the value of themessage
record component.resolveChatType
(RegistryAccess p_242874_) final String
toString()
Returns a string representation of this record class.void
write
(FriendlyByteBuf p_237755_)
-
Field Details
-
message
The field for themessage
record component. -
chatType
The field for thechatType
record component.
-
-
Constructor Details
-
ClientboundPlayerChatPacket
-
ClientboundPlayerChatPacket
Creates an instance of aClientboundPlayerChatPacket
record class.- Parameters:
message
- the value for themessage
record componentchatType
- the value for thechatType
record component
-
-
Method Details
-
write
- Specified by:
write
in interfacePacket<ClientGamePacketListener>
-
handle
- Specified by:
handle
in interfacePacket<ClientGamePacketListener>
-
isSkippable
public boolean isSkippable()- Specified by:
isSkippable
in interfacePacket<ClientGamePacketListener>
-
resolveChatType
-
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)
. -
message
Returns the value of themessage
record component.- Returns:
- the value of the
message
record component
-
chatType
Returns the value of thechatType
record component.- Returns:
- the value of the
chatType
record component
-