
eu.interedition.text.h2.DataStreamMapper Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of text-core Show documentation
Show all versions of text-core Show documentation
Stand-off Markup/Annotation Text Model
The newest version!
package eu.interedition.text.h2;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
/**
* @author Gregor Middell
*/
public interface DataStreamMapper {
T read(InputStream stream, Class type) throws IOException;
void write(T data, OutputStream stream) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy