public class Methods { /** s is a time in the 24-hour-string format; Return the same time in 24-hour-verbose format */ public static String toVerbose(String s) { return ""; } /** s is a time in the 24-hour-string format; Return the same time in AM-PM format. */ public static String ToAMPM(String s) { return ""; } /** s is a time in 24-hour-string format; Return the same time in 24-hour-correct time */ public static String timeToCorrect(String s) { return ""; } /** s is a time in AM-PM-string format; Return the same time in 24-hour-string format.*/ public static String eliminateAMPM(String s) { return ""; } /** s is a time in EITHER the 24-hour-string format OR the AM-PM-string format; Return the same time in the 24-hour-string format*/ public static String removeAMPM(String s) { return ""; } /** s is a time in the 24-hour-string format; Return the time as the number of minutes. E.g. "14:35" is 14*60 + 35.*/ public static int timeInMinutes(String s) { return 0; } /** s is a time in the AM-PM-string format; Return the time as the number of minutes. E.g. "14:35" is 14*60 + 35. See if you can write the body as a single return statement. */ public static int AMPMtimeInMinutes(String s) { return 0; } /** = time s1 < time s2; Precondition: s1 and s2 are in either 24-hour-string format or AM-PM-string format See if you can write the body as a single return statement. */ public static boolean isLess(String s1, String s2) { return false; } }