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

io.gitee.huangguiming.Imcode.utils.IMGsonBuilder Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package io.gitee.huangguiming.Imcode.utils;

import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import io.gitee.huangguiming.Imcode.adapter.IMErrorAdapter;
import io.gitee.huangguiming.Imcode.exception.IMError;

public class IMGsonBuilder {

    private static final GsonBuilder INSTANCE = new GsonBuilder();
    static {
        INSTANCE.registerTypeAdapter(IMError.class,new IMErrorAdapter());
    }
    public static Gson create() {
        return INSTANCE.create();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy