Skip to content

Instantly share code, notes, and snippets.

View rifat159's full-sized avatar

Mohd. Asfaq-E-Azam Rifat rifat159

View GitHub Profile
@rifat159
rifat159 / GsonHelper.java
Created February 15, 2018 09:07
A wrapper class using Gson library to provide serialized JSON string from objects and to extract objects from JSON.
import android.util.Log;
import com.google.gson.Gson;
import com.google.gson.JsonObject;
import com.google.gson.reflect.TypeToken;
import java.lang.reflect.Type;
import java.util.List;
import java.util.Map;