package cs3500.lec04; /** * Durations, with a resolution of seconds. All durations are non-negative. * *

Different {@code Duration} implementations should work together, * meaning that: * *

*/ public interface Duration extends Comparable { /** * Gets the total duration in seconds. * * @return the number of seconds (non-negative) */ long inSeconds(); /** * Formats this duration in the form {@code H:MM:SS} where the hours and * minutes are both zero-padded to two digits, but the hours are not. * The duration should be in canonical form, meaning that both the minutes * and the seconds are less than 60. * * @return this duration formatted in hours, minutes, and seconds */ String asHms(); /** * Returns the sum of two durations. * * @param other the duration to add to {@code this} * @return the sum of the durations */ Duration plus(Duration other); }