Record Class ChatComponent.DelayedMessageDeletion
java.lang.Object
java.lang.Record
net.minecraft.client.gui.components.ChatComponent.DelayedMessageDeletion
- Enclosing class:
ChatComponent
private static record ChatComponent.DelayedMessageDeletion(MessageSignature signature, int deletableAfter)
extends Record
-
Field Summary
FieldsModifier and TypeFieldDescriptionprivate final intThe field for thedeletableAfterrecord component.private final MessageSignatureThe field for thesignaturerecord component. -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateDelayedMessageDeletion(MessageSignature signature, int deletableAfter) Creates an instance of aDelayedMessageDeletionrecord class. -
Method Summary
Modifier 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
-
signature
The field for thesignaturerecord component. -
deletableAfter
private final int deletableAfterThe field for thedeletableAfterrecord component.
-
-
Constructor Details
-
DelayedMessageDeletion
Creates an instance of aDelayedMessageDeletionrecord class.- Parameters:
signature- the value for thesignaturerecord componentdeletableAfter- the value for thedeletableAfterrecord component
-
-
Method Details
-
toString
-
hashCode
-
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 thecomparemethod from their corresponding wrapper classes. -
signature
Returns the value of thesignaturerecord component.- Returns:
- the value of the
signaturerecord component
-
deletableAfter
public int deletableAfter()Returns the value of thedeletableAfterrecord component.- Returns:
- the value of the
deletableAfterrecord component
-