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

org.json.simple.JSONStreamAware Maven / Gradle / Ivy

The newest version!
package org.json.simple;

import java.io.IOException;
import java.io.Writer;

/**
 * Beans that support customized output of JSON text to a writer shall implement this interface.  
 * @author FangYidong
 */
public interface JSONStreamAware {
	/**
	 * write JSON string to out.
	 */
	void writeJSONString(Writer out) throws IOException;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy