All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.bq.oss.lib.mongo.StringToPeriodConverter Maven / Gradle / Ivy

package com.bq.oss.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