类 StopWatch.TaskInfo
java.lang.Object
cn.taketoday.util.StopWatch.TaskInfo
- 封闭类:
- StopWatch
Nested class to hold data about one task executed within the
StopWatch.-
方法概要
修饰符和类型方法说明Get the name of this task.longGet the time in milliseconds this task took.longGet the time in nanoseconds this task took.doubleGet the time in seconds this task took.
-
方法详细资料
-
getTaskName
Get the name of this task. -
getTimeNanos
public long getTimeNanos()Get the time in nanoseconds this task took. -
getTimeMillis
public long getTimeMillis()Get the time in milliseconds this task took. -
getTimeSeconds
public double getTimeSeconds()Get the time in seconds this task took.
-