
io.corbel.lib.mongo.StringToPeriodConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mongodb Show documentation
Show all versions of mongodb Show documentation
MongoDB Connection Library
package io.corbel.lib.mongo;
import java.time.Period;
import org.springframework.core.convert.converter.Converter;
public class StringToPeriodConverter implements Converter {
@Override
public Period convert(String object) {
return object != null ? Period.parse(object) : null;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy