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

com.xkcoding.json.support.JsonAdapter Maven / Gradle / Ivy

There is a newer version: 0.0.3
Show newest version
package com.xkcoding.json.support;

import com.xkcoding.json.exception.SimpleJsonException;

/**
 * 

* 序列化反序列化操作 *

* * @author yangkai.shen * @date Created in 2021-01-20 15:01 */ public interface JsonAdapter { /** * 序列化 * * @param obj 对象 * @return json 字符串 * @throws SimpleJsonException 自定义异常 */ String serialize(Object obj) throws SimpleJsonException; /** * 反序列化 * * @param 类泛型 * @param jsonStr json 字符串 * @param clazz 对象类型 * @return 对象 * @throws SimpleJsonException 自定义异常 */ T deserialize(String jsonStr, Class clazz) throws SimpleJsonException; }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy