protected static List<Object> convertJSONArrayToList(@Nullable JSONArray jsonArray) {
return new GenericJSONArrayList(jsonArray);
}
protected static List<String> convertJSONArrayToStringList(@Nullable JSONArray jsonArray) {
return new StringJSONArrayList(jsonArray);
}