
io.muserver.openapi.JsonWriter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mu-server Show documentation
Show all versions of mu-server Show documentation
A simple but powerful web server framework
The newest version!
package io.muserver.openapi;
import java.io.IOException;
import java.io.Writer;
/**
* An object that can serialize itself to JSON
*/
interface JsonWriter {
/**
* Writes this object as a JSON Object
* @param writer The writer to write to
* @throws IOException Thrown if the writer throws this while writing
*/
void writeJson(Writer writer) throws IOException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy