static int componentsToSeconds(int hours, int minutes, int seconds) { return (hours * secondsPerHour) + (minutes * secondsPerMinute) + seconds; }