cn.ipokerface.web.spring.converter.LocalTimeConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-web Show documentation
Show all versions of spring-web Show documentation
Common Library of ipokerface
The newest version!
package cn.ipokerface.web.spring.converter;
import cn.ipokerface.common.utils.LocalTimeUtils;
import cn.ipokerface.common.utils.StringUtils;
import org.springframework.core.convert.converter.Converter;
import java.time.LocalTime;
import java.time.format.DateTimeFormatter;
public class LocalTimeConverter implements Converter {
@Override
public LocalTime convert(String s) {
if (StringUtils.isEmpty(s)) return null;
return LocalTime.parse(s, DateTimeFormatter.ofPattern(LocalTimeUtils.fmt_time));
}
}