Package net.minecraft.client.network
Record Class ChatPreviewer.Response
java.lang.Object
java.lang.Record
net.minecraft.client.network.ChatPreviewer.Response
- Record Components:
receptionTimestamp
-query
- the message that was queried to previewpreviewText
-
- Enclosing class:
ChatPreviewer
@Environment(CLIENT)
public static record ChatPreviewer.Response(long receptionTimestamp, String query, @Nullable Text previewText)
extends Record
A response to the preview query.
- Mappings:
Namespace Name official ehg$a
intermediary net/minecraft/class_7479$class_7481
named net/minecraft/client/network/ChatPreviewer$Response
official a
intermediary comp_826
named receptionTimestamp
official b
intermediary comp_827
named query
official c
intermediary comp_828
named previewText
-
Field Summary
Modifier and TypeFieldDescriptionThe field for thepreviewText
record component.private final String
The field for thequery
record component.private final long
The field for thereceptionTimestamp
record component. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescription(package private) boolean
canConsume
(String message) Returns whether the response can be consumed for themessage
.final boolean
Indicates whether some other object is "equal to" this one.(package private) boolean
Returns the cooldown for consuming the preview has passed.final int
hashCode()
Returns a hash code value for this object.Returns the value of thepreviewText
record component.query()
Returns the value of thequery
record component.private boolean
queryEquals
(String query) Returns whether normalizedquery
equals the response query.long
Returns the value of thereceptionTimestamp
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
receptionTimestamp
private final long receptionTimestampThe field for thereceptionTimestamp
record component. -
query
The field for thequery
record component. -
previewText
The field for thepreviewText
record component.
-
-
Constructor Details
-
Response
-
-
Method Details
-
queryEquals
Returns whether normalizedquery
equals the response query.- Returns:
- whether normalized
query
equals the response query - Mappings:
Namespace Name Mixin selector official a
Lehg$a;a(Ljava/lang/String;)Z
intermediary method_44929
Lnet/minecraft/class_7479$class_7481;method_44929(Ljava/lang/String;)Z
named queryEquals
Lnet/minecraft/client/network/ChatPreviewer$Response;queryEquals(Ljava/lang/String;)Z
-
canConsume
Returns whether the response can be consumed for themessage
.This returns
true
if themessage
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 b
Lehg$a;b(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
-
hasCooldownPassed
boolean hasCooldownPassed()Returns the cooldown for consuming the preview has passed.- Returns:
- the cooldown for consuming the preview has passed
- See Also:
- Mappings:
Namespace Name Mixin selector official d
Lehg$a;d()Z
intermediary method_44930
Lnet/minecraft/class_7479$class_7481;method_44930()Z
named hasCooldownPassed
Lnet/minecraft/client/network/ChatPreviewer$Response;hasCooldownPassed()Z
-
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. Reference components are compared withObjects::equals(Object,Object)
; primitive components are compared with '=='. -
receptionTimestamp
public long receptionTimestamp()Returns the value of thereceptionTimestamp
record component.- Returns:
- the value of the
receptionTimestamp
record component
-
query
Returns the value of thequery
record component.- Returns:
- the value of the
query
record component
-
previewText
Returns the value of thepreviewText
record component.- Returns:
- the value of the
previewText
record component
-