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

com.simiacryptus.lang.JsonUtil Maven / Gradle / Ivy

There is a newer version: 2.1.0
Show newest version
package com.simiacryptus.lang;

import org.json.JSONArray;
import org.json.JSONException;

public class JsonUtil
{

  public static JSONArray toJsonArray(Iterable objs) throws JSONException
  {
    JSONArray json = new JSONArray();
    for(JsonFormattable o : objs)
    {
      json.put(o.toJson());
    }
    return json;
  }
  
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy