
com.flipboard.goldengate.GsonJsonSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of compiler Show documentation
Show all versions of compiler Show documentation
Generate type safe java bridge into webview javascript code
The newest version!
package com.flipboard.goldengate;
import com.google.gson.Gson;
public class GsonJsonSerializer implements JsonSerializer {
private Gson gson = new Gson();
public String toJson(T stuff) {
return gson.toJson(stuff);
}
public T fromJson(String json, Class type) {
return gson.fromJson(json, type);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy