blob: 08a4b522d40bebfd02a22708847b702434b43ef6 [file] [log] [blame]
import java.text.DecimalFormat;
import org.checkerframework.checker.index.qual.IndexFor;
public final class Stopwatch {
private static final DecimalFormat[] timeFormat = {
new DecimalFormat("#.#"),
new DecimalFormat("#.#"),
new DecimalFormat("#.#"),
new DecimalFormat("#.#"),
new DecimalFormat("#.#"),
};
public DecimalFormat format(@IndexFor("Stopwatch.timeFormat") int digits) {
return Stopwatch.timeFormat[digits];
}
}