Java Second Get getSecondsByDays(int days)

Here you can find the source of getSecondsByDays(int days)

Description

get Seconds By Days

License

LGPL

Declaration

public static int getSecondsByDays(int days) 

Method Source Code

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

public class Main {
    public static int getSecondsByDays(int days) {
        return days * 24 * 60 * 60;
    }/*  ww  w.  ja  va2  s .  c  o m*/
}

Related

  1. getSeconds(int minutes)
  2. getSeconds(String s)
  3. getSeconds(String time)
  4. getSeconds(String time, int defaultValue)
  5. getSecondsAsClock(int time)
  6. getSecondsForShortString(String string)
  7. getSecondsFromEpoch()
  8. getSecondsFromHMS(String hmsvalue)
  9. getSecondsFromString(String s)