Java Second Get getSecondByDay(int day)

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

Description

get Second By Day

License

Apache License

Declaration

public static long getSecondByDay(int day) 

Method Source Code

//package com.java2s;
//License from project: Apache License 

public class Main {
    public static long getSecondByDay(int day) {
        return getSecondByHour(day * 24);
    }//from  w w w  .  j  ava 2s. c  om

    public static long getSecondByHour(int hour) {
        return getSecondByMinute(hour * 60);
    }

    public static long getSecondByMinute(int minute) {
        return (minute * 60);
    }
}

Related

  1. getRemainingSeconds(final long ms)
  2. getRoundedSeconds(long seconds, long interval)
  3. getSecond(long container)
  4. getSecond(long time)
  5. getSecond(String date)
  6. getSecondByHour(int hour)
  7. getSecondByteFromInt(int num)
  8. getSecondColumnAsArray(String[][] stringMatrix)
  9. getSecondExampleTime()