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

edu.iris.dmc.io.FileWriter Maven / Gradle / Ivy

The newest version!
package edu.iris.dmc.io;

import java.io.Closeable;
import java.io.IOException;

import edu.iris.dmc.seed.Volume;

public interface FileWriter extends Closeable{

	public boolean isFileTypeSupported(FileFormat.TYPE type);

	public void write(Volume volume)throws IOException;
	public void write(Volume volume, Formatter formatter)throws IOException;

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy