com.davfx.csv.CsvWriter Maven / Gradle / Ivy
package com.davfx.csv;
import java.io.Closeable;
import java.io.Flushable;
import java.io.IOException;
public interface CsvWriter extends Flushable {
public interface Line extends AutoCloseable, Closeable {
Line append(String s) throws IOException;
}
Line line() throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy