What is StopWatch ? StopWatch is part of Google’s Guava library. An object that measures elapsed time in nanoseconds. It is useful to measure elapsed time using this class instead of direct calls to System.nanoTime() for a few reasons:
An alternate time source can be substituted, for testing or performance reasons. As documented by […]