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

org.simpleflatmapper.csv.CellWriter Maven / Gradle / Ivy

package org.simpleflatmapper.csv;

import java.io.IOException;

public interface CellWriter {
    void writeValue(CharSequence sequence, Appendable appendable) throws IOException;

    void nextCell(Appendable target) throws IOException;

    void endOfRow(Appendable target) throws IOException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy