org.json.simple.JSONAware Maven / Gradle / Ivy
package org.json.simple;
/**
* Beans that support customized output of JSON text shall implement this interface.
*
* @author FangYidong
*/
public interface JSONAware {
/**
* @return JSON text
*/
String toJSONString();
}