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

com.scarabsoft.jrest.converter.VoidConverter 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 class VoidConverter implements Converter {

    @Override
    public Void convert(InputStream stream) throws IOException {
        return null;
    }

    @Override
    public Collection convertCollection(InputStream inputStream, Class collectionClazz) throws IOException {
        throw new RuntimeException("not supported yet.");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy