com.abubusoft.kripton.common.TimeUtils Maven / Gradle / Ivy
package com.abubusoft.kripton.common;
import java.sql.Time;
public class TimeUtils {
public static String write(Time value) {
return value.toString();
}
/**
* Convert a string to relative locale
* @param localeString
* @return
*/
public static Time read(String string) {
return Time.valueOf(string);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy