Record Class ChatPreviewer.Response

java.lang.Object
java.lang.Record
net.minecraft.client.network.ChatPreviewer.Response
Record Components:
receivedTimeStamp -
query - the message that was queried to preview
previewText -
Enclosing class:
ChatPreviewer

@Environment(CLIENT) private static record ChatPreviewer.Response(long receivedTimeStamp, String query, @Nullable Text previewText) extends Record
A response to the preview query.
Mappings:
Namespace Name
official egh$a
intermediary net/minecraft/class_7479$class_7481
named net/minecraft/client/network/ChatPreviewer$Response
official a
intermediary comp_826
named receivedTimeStamp
official b
intermediary comp_827
named query
official c
intermediary comp_828
named previewText
  • Field Details

  • Constructor Details

  • Method Details

    • canConsume

      public boolean canConsume(String message)
      Returns whether the response can be consumed for the message.

      This returns true if the message equals the queried message and the cooldown has passed.

      Returns:
      whether the response can be consumed for the message
      Mappings:
      Namespace Name Mixin selector
      official a Legh$a;a(Ljava/lang/String;)Z
      intermediary method_44045 Lnet/minecraft/class_7479$class_7481;method_44045(Ljava/lang/String;)Z
      named canConsume Lnet/minecraft/client/network/ChatPreviewer$Response;canConsume(Ljava/lang/String;)Z
    • 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 object)
      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. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      object - the object with which to compare
      Returns:
      true if this object is the same as the object argument; false otherwise.
    • receivedTimeStamp

      public long receivedTimeStamp()
      Returns the value of the receivedTimeStamp record component.
      Returns:
      the value of the receivedTimeStamp record component
    • query

      public String query()
      Returns the value of the query record component.
      Returns:
      the value of the query record component
    • previewText

      @Nullable public @Nullable Text previewText()
      Returns the value of the previewText record component.
      Returns:
      the value of the previewText record component