Java Month month2second(int month)

Here you can find the source of month2second(int month)

Description

monthsecond

License

Open Source License

Declaration

public static int month2second(int month) 

Method Source Code

//package com.java2s;
/*/* ww  w.ja v  a2s .  co  m*/
 * Title:      TRS ??????
 * Copyright: Copyright (c) 2004-2005, TRS?????????????. All rights reserved.
 * License:   see the license file.
 * Company:   TRS?????????????(www.trs.com.cn)
 * 
 * Created on 2005-5-11
 */

public class Main {
    public static int month2second(int month) {
        return month * 30 * 24 * 3600;
    }
}

Related

  1. lineStartsWithMonthString(String line)
  2. lookupMonthStr(int month)
  3. maxLengthOfMonth(int month)
  4. MONTH(int mh)
  5. month2int(String month)
  6. month2String(int month)
  7. monthAlphaToNum(String str)
  8. monthDiff(String beforeTime, String endTime)
  9. monthFromDateValue(long x)