Creative Commons Legal Code
Attribution-NonCommercial 3.0 Unported
CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE
LEGAL SERVICES. DISTRIBUTION OF THIS LICENSE DOES NOT C...
If you think the Android project AudioBook listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Java Source Code
/**
* 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.//fromwww.java2s.com
*
* 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
*
*/publicfinalclass JsonParser {
private JsonParser() {
} // to defeat instantiation
/**
* @param jsonString
* @param type
* @return
*/publicstatic <T> T fromJSON(String jsonString, Class<T> type) {
return (new Gson()).fromJson(jsonString, type);
}
/**
* @param obj
* @return
*/publicstatic String toJSON(Object obj) {
return (new Gson()).toJson(obj);
}
}