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

com.scarabsoft.jrest.converter.Converter Maven / Gradle / Ivy

There is a newer version: 1.0.6
Show newest version
package com.scarabsoft.jrest.converter;

import java.io.IOException;
import java.io.InputStream;
import java.util.Collection;

public interface Converter {

    T convert(InputStream stream) throws IOException;

     Collection convertCollection(InputStream inputStream, Class collectionClazz) throws IOException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy