Package net.minecraft.client
Record Class PeriodicNotificationManager.Notification
java.lang.Object
java.lang.Record
net.minecraft.client.PeriodicNotificationManager.Notification
- Enclosing class:
- PeriodicNotificationManager
-
Field Summary
-
Constructor Summary
ConstructorDescriptionNotification
(long delay, long period, String title, String message) Creates an instance of aNotification
record class. -
Method Summary
Modifier and TypeMethodDescriptionlong
delay()
Returns the value of thedelay
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.message()
Returns the value of themessage
record component.long
period()
Returns the value of theperiod
record component.title()
Returns the value of thetitle
record component.final String
toString()
Returns a string representation of this record class.
-
Field Details
-
delay
private final long delayThe field for thedelay
record component. -
period
private final long periodThe field for theperiod
record component. -
title
The field for thetitle
record component. -
message
The field for themessage
record component.
-
-
Constructor Details
-
Notification
Creates an instance of aNotification
record class.- Parameters:
delay
- the value for thedelay
record componentperiod
- the value for theperiod
record componenttitle
- the value for thetitle
record componentmessage
- the value for themessage
record component
-
-
Method Details
-
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 '=='. -
delay
public long delay()Returns the value of thedelay
record component.- Returns:
- the value of the
delay
record component
-
period
public long period()Returns the value of theperiod
record component.- Returns:
- the value of the
period
record component
-
title
Returns the value of thetitle
record component.- Returns:
- the value of the
title
record component
-
message
Returns the value of themessage
record component.- Returns:
- the value of the
message
record component
-