Record Class LoggedChatMessage.Player

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

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

    • profile

      private final com.mojang.authlib.GameProfile profile
      The field for the profile 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.
    • CODEC

      public static final com.mojang.serialization.Codec<LoggedChatMessage.Player> CODEC
    • TIME_FORMATTER

      private static final DateTimeFormatter TIME_FORMATTER
  • Constructor Details

    • Player

      public Player(com.mojang.authlib.GameProfile profile, PlayerChatMessage message, ChatTrustLevel trustLevel)
      Creates an instance of a Player record class.
      Parameters:
      profile - the value for the profile 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
    • profileId

      public UUID profileId()
    • type

      public LoggedChatEvent.Type type()
      Specified by:
      type in interface LoggedChatEvent
    • 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
    • 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