Java Day to Milliseconds day2Millisecode(int days)

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

Description

day Millisecode

License

Open Source License

Declaration

public static long day2Millisecode(int days) 

Method Source Code

//package com.java2s;

public class Main {

    public static long day2Millisecode(int days) {
        return days * 24 * 60 * 60 * 1000;
    }/*from   www. ja  v  a  2  s.  c o m*/
}

Related

  1. dayMillis()
  2. daysToMillis(double days)
  3. daysToMillis(final int days)
  4. daysToMillis(int days)