*
* @return the median duration, or an empty duration if this stopwatch has not been used since creation or being
* {@link #reset() reset}
*/
public Duration getMedianDuration() {
return this.detailedStats != null ? this.detailedStats.getMedian() : new Duration(0l);
}