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