
com.github.cybortronik.parser.ssv.convert.IntegerConverter Maven / Gradle / Ivy
package com.github.cybortronik.parser.ssv.convert;
import org.apache.commons.lang3.StringUtils;
/**
* Created by strifan on 04.06.2015.
*/
public class IntegerConverter implements ValueConverter {
public Class getConverterClass() {
return Integer.class;
}
public Integer convert(String value) {
if (StringUtils.isBlank(value))
return null;
return Integer.parseInt(value);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy