apoc.export.cypher.ExportFileManager Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apoc-common Show documentation
Show all versions of apoc-common Show documentation
Data types package for Neo4j Procedures
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