com.abubusoft.kripton.common.SQLDateUtils 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.sql.Date;
public class SQLDateUtils {
public static String write(Date value) {
return value.toString();
}
/**
* Convert a string to relative locale
* @param localeString
* @return
*/
public static Date read(String string) {
return Date.valueOf(string);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy