Package net.sf.antcontrib.perf
Class AntPerformanceListener.StopWatch
java.lang.Object
net.sf.antcontrib.perf.AntPerformanceListener.StopWatch
- Enclosing class:
- AntPerformanceListener
A stopwatch, useful for 'quick and dirty' performance testing.
- Version:
- $Revision: 1.5 $
- Author:
- Dale Anson
-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
StopWatch
public StopWatch()Starts the stopwatch.
-
-
Method Details
-
start
public long start()Starts/restarts the stopwatch.- Returns:
- the start time, the long returned System.currentTimeMillis().
-
stop
public long stop()Stops the stopwatch.- Returns:
- the stop time, the long returned System.currentTimeMillis().
-
total
public long total()Total cumulative elapsed time.- Returns:
- the total time
-
elapsed
public long elapsed()Elapsed time, difference between the last start time and now.- Returns:
- the elapsed time
-