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

com.dahuatech.hutool.json.JSONString Maven / Gradle / Ivy

There is a newer version: 1.0.13.7
Show newest version
package com.dahuatech.hutool.json;

/**
 * JSONString接口定义了一个toJSONString()
* 实现此接口的类可以通过实现toJSONString()方法来改变转JSON字符串的方式。 * * @author Looly */ public interface JSONString { /** * 自定义转JSON字符串的方法 * * @return JSON字符串 */ String toJSONString(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy