io.github.kits.interfaces.JsonSupport Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of whimthen-kits Show documentation
Show all versions of whimthen-kits Show documentation
Easy to use java tool library.
The newest version!
package io.github.kits.interfaces;
import java.util.List;
/**
* @project: kits
* @created: with IDEA
* @author: nzlong
* @date: 2019 01 24 09:44 | January. Thursday
*/
public interface JsonSupport {
String toJson(Object object);
T toObject(String jsonStr, Class clazz);
List toList(String jsonStr, Class targetClass);
String prettyJson(Object object);
}