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

com.arch.util.JsonUtils Maven / Gradle / Ivy

There is a newer version: 18.12.0
Show newest version
package com.arch.util;

import com.google.gson.Gson;

public final class JsonUtils {

    private JsonUtils() {

    }

    public static String fromJson(Object object) {
        Gson gson = new Gson();
        return gson.toJson(object);
    }

    public static  T fromObject(Class clazz, String json) {
        return new Gson().fromJson(json, clazz);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy