Record Class Stopwatch

java.lang.Object
java.lang.Record
net.minecraft.world.timer.stopwatch.Stopwatch
Record Components:
creationTime -
accumulatedElapsedTime -

public record Stopwatch(long creationTime, long accumulatedElapsedTime) extends Record
Mappings:
Namespace Name
named net/minecraft/world/timer/stopwatch/Stopwatch
intermediary net/minecraft/class_12109
official cdh
named creationTime
intermediary comp_4950
official a
named accumulatedElapsedTime
intermediary comp_4951
official b
  • Field Details

    • creationTime

      private final long creationTime
      The field for the creationTime record component.
    • accumulatedElapsedTime

      private final long accumulatedElapsedTime
      The field for the accumulatedElapsedTime record component.
  • Constructor Details

    • Stopwatch

      public Stopwatch(long creationTimeMs)
      Mappings:
      Namespace Name Mixin selector
      named <init> Lnet/minecraft/world/timer/stopwatch/Stopwatch;<init>(J)V
      intermediary <init> Lnet/minecraft/class_12109;<init>(J)V
      official <init> Lcdh;<init>(J)V
    • Stopwatch

      public Stopwatch(long creationTime, long accumulatedElapsedTime)
      Creates an instance of a Stopwatch record class.
      Parameters:
      creationTime - the value for the creationTime record component
      accumulatedElapsedTime - the value for the accumulatedElapsedTime record component
  • Method Details

    • getElapsedTimeMs

      public long getElapsedTimeMs(long timeMs)
      Mappings:
      Namespace Name Mixin selector
      named getElapsedTimeMs Lnet/minecraft/world/timer/stopwatch/Stopwatch;getElapsedTimeMs(J)J
      intermediary method_75104 Lnet/minecraft/class_12109;method_75104(J)J
      official a Lcdh;a(J)J
    • getElapsedTimeSeconds

      public double getElapsedTimeSeconds(long timeMs)
      Mappings:
      Namespace Name Mixin selector
      named getElapsedTimeSeconds Lnet/minecraft/world/timer/stopwatch/Stopwatch;getElapsedTimeSeconds(J)D
      intermediary method_75105 Lnet/minecraft/class_12109;method_75105(J)D
      official b Lcdh;b(J)D
    • 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. All components in this record class 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.
    • creationTime

      public long creationTime()
      Returns the value of the creationTime record component.
      Returns:
      the value of the creationTime record component
    • accumulatedElapsedTime

      public long accumulatedElapsedTime()
      Returns the value of the accumulatedElapsedTime record component.
      Returns:
      the value of the accumulatedElapsedTime record component