/** * This work is licensed under the Creative Commons Attribution-NonCommercial- * NoDerivs 3.0 Unported License. To view a copy of this license, visit * http://creativecommons.org/licenses/by-nc-nd/3.0/ or send a letter to * Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, * 94041, USA. * * Use of this work is permitted only in accordance with license rights granted. * Materials provided "AS IS"; no representations or warranties provided. * * Copyright � 2012 Marcus Parkkinen, Aki K�kel�, Fredrik �hs. **/ package edu.chalmers.dat255.audiobookplayer.util; import com.google.gson.Gson; /** * @author Marcus Parkkinen * @version 0.1 * */ public final class JsonParser { private JsonParser() { } // to defeat instantiation /** * @param jsonString * @param type * @return */ public static <T> T fromJSON(String jsonString, Class<T> type) { return (new Gson()).fromJson(jsonString, type); } /** * @param obj * @return */ public static String toJSON(Object obj) { return (new Gson()).toJson(obj); } }