/******************************************************************************* * Copyright (c) 2010 Robert "Unlogic" Olofsson (unlogic@unlogic.se). * All rights reserved. This program and the accompanying materials * are made available under the terms of the GNU Lesser Public License v3 * which accompanies this distribution, and is available at * http://www.gnu.org/licenses/lgpl-3.0-standalone.html ******************************************************************************/ package se.unlogic.standardutils.time; public class MillisecondTimeUnits { public static final int MILLI_SECOND = 1; public static final int SECOND = 1000; public static final int MINUTE = 60000; public static final int HOUR = 3600000; public static final int DAY = 86400000; public static final long MONTH = 2678400000l; public static final long YEAR = 32140800000l; }