Here you can find the source of minutes(int minutes)
static long minutes(int minutes)
//package com.java2s; //License from project: Open Source License public class Main { static final long ONE_SECOND_IN_MILLIS = 1000; static long minutes(int minutes) { return minutes * 60 * ONE_SECOND_IN_MILLIS; }// w w w .j a v a 2s. c o m }