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

com.github.ltsopensource.json.deserializer.JavaObjectDeserializer Maven / Gradle / Ivy

package com.github.ltsopensource.json.deserializer;

import java.lang.reflect.Type;

/**
 * @author Robert HG ([email protected]) on 12/30/15.
 */
public class JavaObjectDeserializer implements Deserializer {

    @Override
    public  T deserialize(Object object, Type type) {
        return null;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy