protected static List<String> convertJSONArrayToStringList(@Nullable JSONArray jsonArray) {
return new StringJSONArrayList(jsonArray);
}
protected static List<JSONObject> convertJSONArrayToJSONObjectList(@Nullable JSONArray jsonArray) {
return new JSONObjectJSONArrayList(jsonArray);
}