Class Stopwatch

java.lang.Object
de.uplanet.util.Stopwatch

@Scriptable public final class Stopwatch extends Object
Stopwatch with millisecond time resolution.
  • Field Summary

    Fields
    Modifier and Type
    Field
    Description
    static final long
     
    static final long
     
    static final long
     
  • Constructor Summary

    Constructors
    Constructor
    Description
    Create a stopwatch with millisecond resolution.
    Stopwatch(long p_lResolution)
    Create a stopwatch with a given resolution.
  • Method Summary

    Modifier and Type
    Method
    Description
    long
    Get the meantime in milliseconds and reset to zero.
    void
    Start the stopwatch.
    long
    Get the meantime in milliseconds.

    Methods inherited from class java.lang.Object

    equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Field Details

  • Constructor Details

    • Stopwatch

      public Stopwatch()
      Create a stopwatch with millisecond resolution.
    • Stopwatch

      public Stopwatch(long p_lResolution)
      Create a stopwatch with a given resolution.
      Parameters:
      p_lResolution - One of MILLIS, MICROS or NANOS.
  • Method Details

    • start

      public void start()
      Start the stopwatch.
    • stop

      public long stop()
      Get the meantime in milliseconds.
      Returns:
      The meantime in milliseconds.
    • restart

      public long restart()
      Get the meantime in milliseconds and reset to zero.
      Returns:
      The meantime in milliseconds.