
com.github.cybortronik.parser.ssv.convert.DefaultConverter Maven / Gradle / Ivy
package com.github.cybortronik.parser.ssv.convert;
/**
* Created by strifan on 04.06.2015.
*/
public class DefaultConverter implements ValueConverter {
public Class getConverterClass() {
return Object.class;
}
public Object convert(String value) {
return value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy