com.dahuatech.hutool.json.serialize.JSONSerializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-common Show documentation
Show all versions of java-sdk-common Show documentation
Dahua ICC Open API SDK for Java
package com.dahuatech.hutool.json.serialize;
import com.dahuatech.hutool.json.JSON;
/**
* 序列化接口,通过实现此接口,实现自定义的对象转换为JSON的操作
*
* @param JSON类型,可以是JSONObject或者JSONArray
* @param 对象类型
* @author Looly
*/
public interface JSONSerializer {
/**
* 序列化实现,通过实现此方法,将指定类型的对象转换为{@link JSON}对象
* 转换后的对象可以为JSONObject也可以为JSONArray,首先new一个空的JSON,然后将需要的数据字段put到JSON对象中去即可。
*
* @param json JSON,可以为JSONObject或者JSONArray
* @param bean 指定类型对象
*/
void serialize(T json, V bean);
}