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

org.blackdread.cameraframework.util.TimeUtil Maven / Gradle / Ivy

There is a newer version: 1.2.0
Show newest version
package org.blackdread.cameraframework.util;

import java.time.Instant;

/**
 * Simple util class to return current time.
 * Is not customizable but UTC should fit any purpose.
 * 

Created on 2018/11/03

* * @author Yoann CAPLAIN * @since 1.0.0 */ public final class TimeUtil { public static Instant currentInstant() { return Instant.now(); } private TimeUtil() { } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy