List of available timer utils
This event will reset the timer.
void reset();
Example
TimerUtil.reset();
This event will check if the time has elapsed.
public boolean hasTimeElapsed(final long time, final boolean reset);
TimerUtil.hasTimeElapsed(1000, true);
This event will get the time.
public long getTime();
TimerUtil.getTime();
This event will set the time.
public void setTime(final long time)
TimerUtil.setTime(1000);