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