Record Class LoggedChatMessage.System
java.lang.Object
java.lang.Record
net.minecraft.client.multiplayer.chat.LoggedChatMessage.System
- All Implemented Interfaces:
LoggedChatEvent, LoggedChatMessage
- Enclosing interface:
LoggedChatMessage
public static record LoggedChatMessage.System(Component message, Instant timeStamp)
extends Record
implements LoggedChatMessage
-
Nested Class Summary
Nested classes/interfaces inherited from interface LoggedChatEvent
LoggedChatEvent.TypeNested classes/interfaces inherited from interface LoggedChatMessage
LoggedChatMessage.Player, LoggedChatMessage.System -
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbooleanfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.message()Returns the value of themessagerecord component.Returns the value of thetimeStamprecord component.final StringtoString()Returns a string representation of this record class.type()Methods inherited from interface LoggedChatMessage
toNarrationComponent
-
Field Details
-
message
The field for themessagerecord component. -
timeStamp
The field for thetimeStamprecord component. -
CODEC
-
-
Constructor Details
-
System
-
-
Method Details
-
toContentComponent
- Specified by:
toContentComponentin interfaceLoggedChatMessage
-
canReport
- Specified by:
canReportin interfaceLoggedChatMessage
-
type
- Specified by:
typein interfaceLoggedChatEvent
-
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). -
message
Returns the value of themessagerecord component.- Returns:
- the value of the
messagerecord component
-
timeStamp
Returns the value of thetimeStamprecord component.- Returns:
- the value of the
timeStamprecord component
-