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

com.tecacet.util.conversion.ConverterRegistry Maven / Gradle / Ivy

Go to download

JFlat's purpose is to convert flat files to Java Beans and vice versa. Some supported formats are CSV, fixed-width, arbitrary delimiters, and excel files. There are also tools to generate Java Beans to/from JDBC and Swing tables. JFlat is highly extensible and can be adopted to support additional formats.

The newest version!
package com.tecacet.util.conversion;


public interface ConverterRegistry {

	  void registerConverter(Class type, DataConverter converter);
	
	void deregister(Class type);
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy