Record Class ClientboundDisguisedChatPacket
java.lang.Object
java.lang.Record
net.minecraft.network.protocol.game.ClientboundDisguisedChatPacket
- All Implemented Interfaces:
Packet<ClientGamePacketListener>
public record ClientboundDisguisedChatPacket(Component 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 Component
The field for themessage
record component. -
Constructor Summary
ConstructorDescriptionClientboundDisguisedChatPacket
(Component message, ChatType.BoundNetwork chatType) Creates an instance of aClientboundDisguisedChatPacket
record class.ClientboundDisguisedChatPacket
(FriendlyByteBuf p_249018_) -
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_251953_) final int
hashCode()
Returns a hash code value for this object.boolean
message()
Returns the value of themessage
record component.final String
toString()
Returns a string representation of this record class.void
write
(FriendlyByteBuf p_250975_)
-
Field Details
-
message
The field for themessage
record component. -
chatType
The field for thechatType
record component.
-
-
Constructor Details
-
ClientboundDisguisedChatPacket
-
ClientboundDisguisedChatPacket
Creates an instance of aClientboundDisguisedChatPacket
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>
-
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
-