Here you can find the source of getMinute(Time time)
public static int getMinute(Time time)
//package com.java2s; //License from project: Apache License import java.sql.Time; import java.time.LocalTime; public class Main { public static int getMinute(Time time) { LocalTime localTime = time.toLocalTime(); return localTime.getMinute(); }// www . j a v a 2 s . c o m }