Record Class LoggedChatMessage.Player

java.lang.Object
java.lang.Record
net.minecraft.client.multiplayer.chat.LoggedChatMessage.Player
All Implemented Interfaces:
LoggedChatEvent, LoggedChatMessage, LoggedChatMessageLink
Enclosing interface:
LoggedChatMessage

public static record LoggedChatMessage.Player(com.mojang.authlib.GameProfile profile, Component displayName, PlayerChatMessage message, ChatTrustLevel trustLevel) extends Record implements LoggedChatMessage, LoggedChatMessageLink
  • Field Details

    • profile

      private final com.mojang.authlib.GameProfile profile
      The field for the profile record component.
    • displayName

      private final Component displayName
      The field for the displayName record component.
    • message

      private final PlayerChatMessage message
      The field for the message record component.
    • trustLevel

      private final ChatTrustLevel trustLevel
      The field for the trustLevel record component.
    • TIME_FORMATTER

      private static final DateTimeFormatter TIME_FORMATTER
  • Constructor Details

    • Player

      public Player(com.mojang.authlib.GameProfile profile, Component displayName, PlayerChatMessage message, ChatTrustLevel trustLevel)
      Creates an instance of a Player record class.
      Parameters:
      profile - the value for the profile record component
      displayName - the value for the displayName record component
      message - the value for the message record component
      trustLevel - the value for the trustLevel record component
  • Method Details

    • toContentComponent

      public Component toContentComponent()
      Specified by:
      toContentComponent in interface LoggedChatMessage
    • toNarrationComponent

      public Component toNarrationComponent()
      Specified by:
      toNarrationComponent in interface LoggedChatMessage
    • toHeadingComponent

      public Component toHeadingComponent()
    • getTimeComponent

      private Component getTimeComponent()
    • canReport

      public boolean canReport(UUID p_242210_)
      Specified by:
      canReport in interface LoggedChatMessage
    • header

      public SignedMessageHeader header()
      Specified by:
      header in interface LoggedChatMessageLink
    • bodyDigest

      public byte[] bodyDigest()
      Specified by:
      bodyDigest in interface LoggedChatMessageLink
    • headerSignature

      public MessageSignature headerSignature()
      Specified by:
      headerSignature in interface LoggedChatMessageLink
    • profileId

      public UUID profileId()
    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object o)
      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 with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • profile

      public com.mojang.authlib.GameProfile profile()
      Returns the value of the profile record component.
      Returns:
      the value of the profile record component
    • displayName

      public Component displayName()
      Returns the value of the displayName record component.
      Returns:
      the value of the displayName record component
    • message

      public PlayerChatMessage message()
      Returns the value of the message record component.
      Returns:
      the value of the message record component
    • trustLevel

      public ChatTrustLevel trustLevel()
      Returns the value of the trustLevel record component.
      Returns:
      the value of the trustLevel record component