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

org.geneweaver.io.writer.Export Maven / Gradle / Ivy

There is a newer version: 2.7.12
Show newest version
package org.geneweaver.io.writer;

import java.nio.file.Path;

@FunctionalInterface
public interface Export {
	
	/**
	 * Interface for customizing exports.
	 * @param path
	 * @param builder
	 * @return a message to be logged regarding the progress of the export.
	 * @throws Exception
	 */
	String export(ExportBuilder builder, Path path) throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy