Uses of Class
org.json.JSONParserConfiguration
-
Uses of JSONParserConfiguration in org.json
Methods in org.json that return JSONParserConfigurationModifier and TypeMethodDescriptionprotected JSONParserConfigurationJSONParserConfiguration.clone()JSONParserConfiguration.withMaxNestingDepth(int maxNestingDepth) Methods in org.json with parameters of type JSONParserConfigurationModifier and TypeMethodDescriptionprivate voidJSONArray.addAll(Object array, boolean wrap, int recursionDepth, JSONParserConfiguration jsonParserConfiguration) Add an array's elements to the JSONArray.private voidJSONArray.addAll(Collection<?> collection, boolean wrap, int recursionDepth, JSONParserConfiguration jsonParserConfiguration) Add a collection's elements to the JSONArray.JSONArray.put(int index, 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 ObjectJSONObject.wrap(Object object, int recursionDepth, JSONParserConfiguration jsonParserConfiguration) Wrap an object, if necessary.private static ObjectJSONObject.wrap(Object object, Set<Object> objectsRecord, int recursionDepth, JSONParserConfiguration jsonParserConfiguration) Constructors in org.json with parameters of type JSONParserConfigurationModifierConstructorDescription(package private)JSONArray(Collection<?> collection, int recursionDepth, JSONParserConfiguration jsonParserConfiguration) Construct a JSONArray from a collection with recursion depth.JSONArray(Collection<?> collection, JSONParserConfiguration jsonParserConfiguration) Construct a JSONArray from a Collection.privateJSONObject(Map<?, ?> m, int recursionDepth, JSONParserConfiguration jsonParserConfiguration) Construct a JSONObject from a map with recursion depth.JSONObject(Map<?, ?> m, JSONParserConfiguration jsonParserConfiguration) Construct a JSONObject from a Map with custom json parse configurations.