PlotSquared/Bukkit/src/main/java/com/plotsquared/bukkit/chat/JsonRepresentedObject.java
2020-04-10 20:19:18 -04:00

21 lines
533 B
Java

package com.plotsquared.bukkit.chat;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
/**
* Represents an object that can be serialized to a JSON writer instance.
*/
interface JsonRepresentedObject {
/**
* Writes the JSON representation of this object to the specified writer.
*
* @param writer The JSON writer which will receive the object.
* @throws IOException If an error occurs writing to the stream.
*/
public void writeJson(JsonWriter writer) throws IOException;
}