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

apoc.export.cypher.ExportFileManager Maven / Gradle / Ivy

package apoc.export.cypher;

import java.io.PrintWriter;
import java.io.StringWriter;

public interface ExportFileManager {
    PrintWriter getPrintWriter(String type);

    StringWriter getStringWriter(String type);

    String drain(String type);

    String getFileName();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy