93949596979899
/** * Construct an empty JSONArray. */ public JSONArray() { this.myArrayList = new LiteralResultList(); }
153154155156157158159160
* Construct a JSONArray from a Collection. * @param collection A Collection. */ public JSONArray(Collection collection) { this.myArrayList = (collection == null) ? new LiteralResultList() : new LiteralResultList(collection); }