org.defendev.common.time.TimeUtil Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-jdk Show documentation
Show all versions of common-jdk Show documentation
Common utils purely based on JDK and no other dependencies. Only exception being for org.jetbrains:annotations for building stratgic Kotlin language compatibility.Another only-exception is Apache Commons Lang3.
The newest version!
package org.defendev.common.time;
import java.time.ZoneId;
public class TimeUtil {
public static final ZoneId ZULU_ZONE_ID = ZoneId.of("Z");
public static final ZoneId EUROPE_WARSAW_ZONE_ID = ZoneId.of("Europe/Warsaw");
}