com.abubusoft.kripton.common.TimeZoneUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kripton-core Show documentation
Show all versions of kripton-core Show documentation
Kripton Persistence Library - core module
package com.abubusoft.kripton.common;
import java.util.TimeZone;
public class TimeZoneUtils {
public static String write(TimeZone value) {
return value.getID();
}
/**
* Convert a string to relative locale
* @param localeString
* @return
*/
public static TimeZone read(String string) {
return TimeZone.getTimeZone(string);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy