Uses of Class
org.json.JSONParserConfiguration
-
-
Uses of JSONParserConfiguration in org.json
Methods in org.json that return JSONParserConfiguration Modifier and Type Method Description protected JSONParserConfiguration
JSONParserConfiguration. clone()
JSONParserConfiguration
JSONParserConfiguration. withMaxNestingDepth(int maxNestingDepth)
Methods in org.json with parameters of type JSONParserConfiguration Modifier and Type Method Description private void
JSONArray. addAll(java.lang.Object array, boolean wrap, int recursionDepth, JSONParserConfiguration jsonParserConfiguration)
Add an array's elements to the JSONArray.private void
JSONArray. addAll(java.util.Collection<?> collection, boolean wrap, int recursionDepth, JSONParserConfiguration jsonParserConfiguration)
Add a collection's elements to the JSONArray.JSONArray
JSONArray. put(int index, java.util.Map<?,?> value, JSONParserConfiguration jsonParserConfiguration)
Put a value in the JSONArray, where the value will be a JSONObject that is produced from a Map.(package private) static java.lang.Object
JSONObject. wrap(java.lang.Object object, int recursionDepth, JSONParserConfiguration jsonParserConfiguration)
Wrap an object, if necessary.private static java.lang.Object
JSONObject. wrap(java.lang.Object object, java.util.Set<java.lang.Object> objectsRecord, int recursionDepth, JSONParserConfiguration jsonParserConfiguration)
Constructors in org.json with parameters of type JSONParserConfiguration Constructor Description JSONArray(java.util.Collection<?> collection, int recursionDepth, JSONParserConfiguration jsonParserConfiguration)
Construct a JSONArray from a collection with recursion depth.JSONArray(java.util.Collection<?> collection, JSONParserConfiguration jsonParserConfiguration)
Construct a JSONArray from a Collection.JSONObject(java.util.Map<?,?> m, int recursionDepth, JSONParserConfiguration jsonParserConfiguration)
Construct a JSONObject from a map with recursion depth.JSONObject(java.util.Map<?,?> m, JSONParserConfiguration jsonParserConfiguration)
Construct a JSONObject from a Map with custom json parse configurations.
-