com.simiacryptus.lang.JsonUtil 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.JSONArray;
import org.json.JSONException;
public class JsonUtil
{
public static JSONArray toJsonArray(Iterable extends JsonFormattable> objs) throws JSONException
{
JSONArray json = new JSONArray();
for(JsonFormattable o : objs)
{
json.put(o.toJson());
}
return json;
}
}