org.blackdread.cameraframework.util.TimeUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camera-framework Show documentation
Show all versions of camera-framework Show documentation
Canon sdk implementation of bindings
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() {
}
}