forked from exercism/java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSplitSecondStopwatch.java
More file actions
37 lines (29 loc) · 1.34 KB
/
Copy pathSplitSecondStopwatch.java
File metadata and controls
37 lines (29 loc) · 1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
public class SplitSecondStopwatch {
public void start() {
throw new UnsupportedOperationException("Please implement the SplitSecondStopwatch.start method.");
}
public void stop() {
throw new UnsupportedOperationException("Please implement the SplitSecondStopwatch.stop method.");
}
public void reset() {
throw new UnsupportedOperationException("Please implement the SplitSecondStopwatch.reset method.");
}
public void lap() {
throw new UnsupportedOperationException("Please implement the SplitSecondStopwatch.lap method.");
}
public String state() {
throw new UnsupportedOperationException("Please implement the SplitSecondStopwatch.state method.");
}
public String currentLap() {
throw new UnsupportedOperationException("Please implement the SplitSecondStopwatch.currentLap method.");
}
public String total() {
throw new UnsupportedOperationException("Please implement the SplitSecondStopwatch.total method.");
}
public java.util.List<String> previousLaps() {
throw new UnsupportedOperationException("Please implement the SplitSecondStopwatch.previousLaps method.");
}
public void advanceTime(String timeString) {
throw new UnsupportedOperationException("Please implement the SplitSecondStopwatch.advanceTime method.");
}
}