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

io.github.kits.interfaces.JsonSupport Maven / Gradle / Ivy

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);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy