Package net.minecraft.network.message
Record Class SentMessage.Chat
java.lang.Object
java.lang.Record
net.minecraft.network.message.SentMessage.Chat
- Record Components:
message
-
- All Implemented Interfaces:
SentMessage
- Enclosing interface:
SentMessage
The wrapper used for normal chat messages.
Text filtering can cause some players to not receive this kind of message.
- Mappings:
Namespace Name official vu$b
intermediary net/minecraft/class_7604$class_7607
named net/minecraft/network/message/SentMessage$Chat
official a
intermediary comp_1082
named message
-
Nested Class Summary
Nested classes/interfaces inherited from interface net.minecraft.network.message.SentMessage
SentMessage.Chat, SentMessage.Profileless
-
Field Summary
Modifier and TypeFieldDescriptionprivate final SignedMessage
The field for themessage
record component. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptioncontent()
final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.message()
Returns the value of themessage
record component.void
send
(ServerPlayerEntity sender, boolean filterMaskEnabled, MessageType.Parameters params) final String
toString()
Returns a string representation of this record class.
-
Field Details
-
message
The field for themessage
record component.
-
-
Constructor Details
-
Chat
Creates an instance of aChat
record class.- Parameters:
message
- the value for themessage
record component
-
-
Method Details
-
content
- Specified by:
content
in interfaceSentMessage
- Mappings:
Namespace Name Mixin selector official a
Lvu;a()Lvf;
intermediary comp_1081
Lnet/minecraft/class_7604;comp_1081()Lnet/minecraft/class_2561;
named content
Lnet/minecraft/network/message/SentMessage;content()Lnet/minecraft/text/Text;
-
send
public void send(ServerPlayerEntity sender, boolean filterMaskEnabled, MessageType.Parameters params) - Specified by:
send
in interfaceSentMessage
- Mappings:
Namespace Name Mixin selector official a
Lvu;a(Lane;ZLvb$a;)V
intermediary method_45095
Lnet/minecraft/class_7604;method_45095(Lnet/minecraft/class_3222;ZLnet/minecraft/class_2556$class_7602;)V
named send
Lnet/minecraft/network/message/SentMessage;send(Lnet/minecraft/server/network/ServerPlayerEntity;ZLnet/minecraft/network/message/MessageType$Parameters;)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)
. -
message
Returns the value of themessage
record component.- Returns:
- the value of the
message
record component
-