Class StopWatch


  • public final class StopWatch
    extends Object
    Stopwatch, inspired by the implementation in the Spring framework.
    • Constructor Detail

      • StopWatch

        public StopWatch()
    • Method Detail

      • start

        public void start()
        Starts the stop watch.
      • stop

        public void stop()
        Stops the stop watch.
      • getTotalTimeMillis

        public long getTotalTimeMillis()
        Returns:
        The total run time in millis of the stop watch between start and stop calls.