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

opencsv.utils.ICsvMapper Maven / Gradle / Ivy

package opencsv.utils;

import java.io.Reader;
import java.io.Writer;
import java.util.List;
import java.util.Map;

/**
 * Created with IntelliJ IDEA.
 * User: twer
 * Date: 13-5-13
 * Time: 下午10:01
 * To change this template use File | Settings | File Templates.
 */
public interface ICsvMapper {
    ICsvMapper withMapping(Map mapping);

    ICsvMapper withMapping(ICsvColumnMapping mapping);

    ICsvMapper withMapping(String header, String property);

    List fromCsv(Reader reader);

    void toCsv(Writer writer, List list) throws Exception;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy