All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.github.nichetoolkit.rest.constant.MillisecondConstants Maven / Gradle / Ivy

There is a newer version: 1.1.1
Show newest version
package io.github.nichetoolkit.rest.constant;

/**
 * 

MillisecondConstants

* @author Cyan ([email protected]) * @version v1.0.0 */ public class MillisecondConstants { /** mill seconds of one second */ public static final Long SECOND = 1000L; /** mill seconds of one minute */ public static final Long MINUTE = SECOND * 60; /** mill seconds of one hour */ public static final Long HOUR = MINUTE * 60; /** mill seconds of one day */ public static final Long DAY = HOUR * 24; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy