io.github.nichetoolkit.rest.constant.MillisecondConstants Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rest-toolkit-core Show documentation
Show all versions of rest-toolkit-core Show documentation
Rest toolkit core project for Spring Boot
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