Java Day From dayStartTime(int day)

Here you can find the source of dayStartTime(int day)

Description

day Start Time

License

Open Source License

Declaration

public static long dayStartTime(int day) 

Method Source Code

//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
}

Related

  1. daysBetweenTime(long start, long end)
  2. daysInFebruary(int year)
  3. daysInMonthForYear(int commonMonthIndex, int yearInteger)
  4. daysOfTwo(Date date1, Date date2)
  5. daysSince(Date since)
  6. distanceToNowInDaysIgnoreTime(Date date)
  7. equalsDay(final Date date1, final Date date2)
  8. explDay(Date date)
  9. firstDayOfCentury(final int century)