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

eu.interedition.text.h2.DataStreamMapper Maven / Gradle / Ivy

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