fatjar.JSON Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of FatJar Show documentation
Show all versions of FatJar Show documentation
FatJar simple API to quick prototyping and portable web services
package fatjar;
import fatjar.implementations.genson.GensonJSON;
public interface JSON {
static T fromJson(String json, Class tClass) {
return new GensonJSON().fromJson(json, tClass);
}
static String toJson(Object object) {
return new GensonJSON().toJson(object);
}
}