com.dahuatech.hutool.json.JSONString 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;
/**
* JSONString
接口定义了一个toJSONString()
* 实现此接口的类可以通过实现toJSONString()
方法来改变转JSON字符串的方式。
*
* @author Looly
*/
public interface JSONString {
/**
* 自定义转JSON字符串的方法
*
* @return JSON字符串
*/
String toJSONString();
}