com.simiacryptus.lang.JsonFormattable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-util Show documentation
Show all versions of java-util Show documentation
Miscellaneous Utilities (Pure Java)
package com.simiacryptus.lang;
import org.json.JSONException;
import org.json.JSONObject;
public interface JsonFormattable
{
public abstract JSONObject toJson() throws JSONException;
}