Here you can find the source of shortTimeToMinutes(String time)
public static int shortTimeToMinutes(String time)
//package com.java2s; //License from project: Apache License public class Main { public static int shortTimeToMinutes(String time) { return Integer.parseInt(time.substring(0, 2)) * 60 + Integer.parseInt(time.substring(3, 5)); }/*from w ww . ja va2 s. com*/ }