Package net.minecraft.client.gui.hud
Record Class ChatHud.RemovalQueuedMessage
java.lang.Object
java.lang.Record
net.minecraft.client.gui.hud.ChatHud.RemovalQueuedMessage
- Record Components:
- signature-
- deletableAfter-
- Enclosing class:
- ChatHud
@Environment(CLIENT)
private static record ChatHud.RemovalQueuedMessage(MessageSignatureData signature, int deletableAfter)
extends Record
- Mappings:
- Namespace - Name - named - net/minecraft/client/gui/hud/ChatHud$RemovalQueuedMessage- intermediary - net/minecraft/class_338$class_7731- official - fov$a- named - signature- intermediary - comp_1021- official - a- named - deletableAfter- intermediary - comp_1022- official - b
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final intThe field for thedeletableAfterrecord component.private final MessageSignatureDataThe field for thesignaturerecord component.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionintReturns the value of thedeletableAfterrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of thesignaturerecord component.final StringtoString()Returns a string representation of this record class.
- 
Field Details- 
signatureThe field for thesignaturerecord component.
- 
deletableAfterprivate final int deletableAfterThe field for thedeletableAfterrecord component.
 
- 
- 
Constructor Details- 
RemovalQueuedMessageRemovalQueuedMessage(MessageSignatureData messageSignatureData, int int2) 
 
- 
- 
Method Details- 
toStringReturns 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.
- 
hashCodepublic 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.
- 
equalsIndicates 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 '=='.
- 
signatureReturns the value of thesignaturerecord component.- Returns:
- the value of the signaturerecord component
 
- 
deletableAfterpublic int deletableAfter()Returns the value of thedeletableAfterrecord component.- Returns:
- the value of the deletableAfterrecord component
 
 
-