Here you can find the source of MONTH(int mh)
public static long MONTH(int mh)
//package com.java2s; //License from project: Artistic License public class Main { public static long MONTH(int mh) { return mh * 30 * 24 * 60 * 60 * 1000; }/*from w ww . ja va 2 s.co m*/ }