com.creditdatamw.zerocell.converter.Converter Maven / Gradle / Ivy
package com.creditdatamw.zerocell.converter;
/**
* Converts a value from a String type to another
*/
@FunctionalInterface
public interface Converter {
T convert(String value, String columnName, int row);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy