Record Class ChatComponent.DelayedMessageDeletion
java.lang.Object
java.lang.Record
net.minecraft.client.gui.components.ChatComponent.DelayedMessageDeletion
- Enclosing class:
- ChatComponent
static record ChatComponent.DelayedMessageDeletion(MessageSignature signature, int deletableAfter)
extends Record
- 
Field SummaryFieldsModifier and TypeFieldDescriptionprivate final intThe field for thedeletableAfterrecord component.private final MessageSignatureThe field for thesignaturerecord component.
- 
Constructor SummaryConstructorsConstructorDescriptionDelayedMessageDeletion(MessageSignature signature, int deletableAfter) Creates an instance of aDelayedMessageDeletionrecord class.
- 
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- 
DelayedMessageDeletionDelayedMessageDeletion(MessageSignature signature, int deletableAfter) Creates an instance of aDelayedMessageDeletionrecord class.- Parameters:
- signature- the value for the- signaturerecord component
- deletableAfter- the value for the- deletableAfterrecord component
 
 
- 
- 
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
 
 
-