Example #1
0
  public KJ_JSONArray getJSONArray(int index) throws KJ_JSONException {
    KJ_JSONValue val = arr.get(index);
    KJ_JSONArray jObj = val.getJSONArray();

    if (jObj == null) throw new KJ_JSONException("Not a JSON Array type");

    return jObj;
  }