All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.tom.kit.json.Jsonable Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package cn.tom.kit.json;

public interface Jsonable {
	
	String serialize(Object obj) ;
	
	Object deserialize(String json) ;
	
	 T deserialize(String json, Class clazz);
	
	byte[] serializeToBytes(Object obj);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy