Record Class LevelPrioritizedQueue.Entry

java.lang.Object
java.lang.Record
net.minecraft.server.world.LevelPrioritizedQueue.Entry
Record Components:
chunkPos -
tasks -
Enclosing class:
LevelPrioritizedQueue

public static record LevelPrioritizedQueue.Entry(long chunkPos, List<Runnable> tasks) extends Record
Mappings:
Namespace Name
named net/minecraft/server/world/LevelPrioritizedQueue$Entry
intermediary net/minecraft/class_3899$class_10172
official aws$a
named chunkPos
intermediary comp_3140
official a
named tasks
intermediary comp_3141
official b
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    private final long
    The field for the chunkPos record component.
    private final List<Runnable>
    The field for the tasks record component.
  • Constructor Summary

    Constructors
    Constructor
    Description
    Entry(long chunkPos, List<Runnable> tasks)
    Creates an instance of a Entry record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    long
    Returns the value of the chunkPos 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 tasks 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

    • chunkPos

      private final long chunkPos
      The field for the chunkPos record component.
    • tasks

      private final List<Runnable> tasks
      The field for the tasks record component.
  • Constructor Details

    • Entry

      public Entry(long chunkPos, List<Runnable> tasks)
      Creates an instance of a Entry record class.
      Parameters:
      chunkPos - the value for the chunkPos record component
      tasks - the value for the tasks 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.
    • chunkPos

      public long chunkPos()
      Returns the value of the chunkPos record component.
      Returns:
      the value of the chunkPos record component
    • tasks

      public List<Runnable> tasks()
      Returns the value of the tasks record component.
      Returns:
      the value of the tasks record component