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

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

There is a newer version: 5.25.1
Show newest version
package apoc.export.cypher;

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

public interface ExportFileManager {
    PrintWriter getPrintWriter(String type);

    StringWriter getStringWriter(String type);

    Object drain(String type);

    Boolean separatedFiles();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy