Here you can find the source of days(int d)
static private int days(int d)
//package com.java2s; //License from project: Apache License public class Main { static private int days(int d) { return d * hours(24); }//from w w w . j av a 2s. c o m static private int hours(int h) { return h * minutes(60); } static private int minutes(int m) { return m * seconds(60); } static private int seconds(int s) { return s * 1000; } }