}
public Stopwatch( boolean detailedStats,
String description ) {
this.description = description != null ? description : "";
this.detailedStats = detailedStats ? new DetailedStatistics<Duration>(new DurationOperations()) : null;
this.stats = detailedStats ? this.detailedStats : new SimpleStatistics<Duration>(new DurationOperations());
reset();
}