com.tecacet.jflat8.ConverterRegistry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jflat8 Show documentation
Show all versions of jflat8 Show documentation
Convert flat files to Java Beans and vice versa.
Some supported formats are CSV, fixed-width, arbitrary regex, and more.
JFlat 8 is highly extensible and can be adopted to support additional formats.
package com.tecacet.jflat8;
import java.util.function.Function;
public interface ConverterRegistry {
void registerConverter(Class toType, Function converter);
}