org.luoshu.util.json.JsonDefine Maven / Gradle / Ivy
package org.luoshu.util.json;
/**
* 统一使用这个 json 工具
* @author zxj
*/
public interface JsonDefine {
String toJSONString(Object object);
T parseObject(String text , Class clazz);
T parseObject(String text , TypeReference type);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy