Record Class PeriodicNotificationManager.Entry

java.lang.Object
java.lang.Record
net.minecraft.client.resource.PeriodicNotificationManager.Entry
Record Components:
delay -
period -
title -
message -
Enclosing class:
PeriodicNotificationManager

@Environment(CLIENT) public static record PeriodicNotificationManager.Entry(long delay, long period, String title, String message) extends Record
Mappings:
Namespace Name
official ejl$a
intermediary net/minecraft/class_6877$class_6878
named net/minecraft/client/resource/PeriodicNotificationManager$Entry
official a
intermediary comp_345
named delay
official b
intermediary comp_346
named period
official c
intermediary comp_347
named title
official d
intermediary comp_348
named message
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final long
    The field for the delay record component.
    private final String
    The field for the message record component.
    private final long
    The field for the period record component.
    private final String
    The field for the title record component.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Entry(long delay, long period, String title, String message)
    Creates an instance of a Entry record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    long
    Returns the value of the delay record component.
    final boolean
    equals(Object object)
    Indicates whether some other object is "equal to" this one.
    final int
    Returns a hash code value for this object.
    Returns the value of the message record component.
    long
    Returns the value of the period record component.
    Returns the value of the title record component.
    final String
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Field Details

    • delay

      private final long delay
      The field for the delay record component.
    • period

      private final long period
      The field for the period record component.
    • title

      private final String title
      The field for the title record component.
    • message

      private final String message
      The field for the message record component.
  • Constructor Details

    • Entry

      public Entry(long delay, long period, String title, String message)
      Creates an instance of a Entry record class.
      Parameters:
      delay - the value for the delay record component
      period - the value for the period record component
      title - the value for the title record component
      message - the value for the message record component
  • Method Details

    • toString

      public final String 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.
      Specified by:
      toString in class Record
      Returns:
      a string representation of this object
    • 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.
      Specified by:
      hashCode in class Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(Object object)
      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 with Objects::equals(Object,Object); primitive components are compared with '=='.
      Specified by:
      equals in class Record
      Parameters:
      object - the object with which to compare
      Returns:
      true if this object is the same as the object argument; false otherwise.
    • delay

      public long delay()
      Returns the value of the delay record component.
      Returns:
      the value of the delay record component
    • period

      public long period()
      Returns the value of the period record component.
      Returns:
      the value of the period record component
    • title

      public String title()
      Returns the value of the title record component.
      Returns:
      the value of the title record component
    • message

      public String message()
      Returns the value of the message record component.
      Returns:
      the value of the message record component