Here you can find the source of numberOfMinutesForDays(int days)
public static int numberOfMinutesForDays(int days)
//package com.java2s; //License from project: Open Source License public class Main { public static int numberOfMinutesForDays(int days) { return 60 * 24 * days; }//w w w. j a v a 2 s . com }