package org.josast.util.date; /** * give main characteristics of a day * * @author XTOPHE * @version $Revision: 1.1 $ */ public class Day { //~ Static fields/initializers ---------------------------------------- /** number of second in a day : 86400 */ public static final double SEC_PER_DAY = 86400.0; /** number minutes by day */ public static final double MIN_PER_DAY = 1440.0; //~ Constructors ------------------------------------------------------ /** * Creates a new Day object. */ private Day() { } }