Here you can find the source of getNextMinute(Integer minute)
public static Long getNextMinute(Integer minute)
//package com.java2s; //License from project: Apache License public class Main { public static Long getNextMinute(Integer minute) { Long time = minute * 60000L; return System.currentTimeMillis() + time; }// w w w . ja v a 2 s .c o m }