utils.timer
Class MicroTimer

java.lang.Object
  |
  +--utils.timer.MicroTimer

public class MicroTimer
extends java.lang.Object


Constructor Summary
MicroTimer()
           
 
Method Summary
 long[] currentTime()
           
 long getCumulatedTime()
          Return the newly computed cumulated time as measured by this MicroTimer in microseconds
static void main(java.lang.String[] args)
           
 void start()
           
 void stop()
          Stop the timer and returns the cumulated time
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

MicroTimer

public MicroTimer()
Method Detail

currentTime

public long[] currentTime()

start

public void start()

stop

public void stop()
Stop the timer and returns the cumulated time


getCumulatedTime

public long getCumulatedTime()
Return the newly computed cumulated time as measured by this MicroTimer in microseconds


main

public static void main(java.lang.String[] args)