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) Defines the maximum nesting depth that the parser will descend before throwing an exception when parsing a map into JSONObject or parsing aCollectioninstance into JSONArray.JSONParserConfiguration.withOverwriteDuplicateKey(boolean overwriteDuplicateKey) Controls the parser's behavior when meeting duplicate keys.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.JSONObject(String source, JSONParserConfiguration jsonParserConfiguration) Construct a JSONObject from a source JSON text string with custom json parse configurations.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.JSONObject(JSONTokener x, JSONParserConfiguration jsonParserConfiguration) Construct a JSONObject from a JSONTokener with custom json parse configurations.