Uses of Class
org.json.ParserConfiguration
-
-
Uses of ParserConfiguration in org.json
Subclasses of ParserConfiguration in org.json Modifier and Type Class Description class
JSONMLParserConfiguration
Configuration object for the XML to JSONML parser.class
JSONParserConfiguration
Configuration object for the JSON parser.class
XMLParserConfiguration
Configuration object for the XML parser.Methods in org.json with type parameters of type ParserConfiguration Modifier and Type Method Description <T extends ParserConfiguration>
TParserConfiguration. withKeepStrings(boolean newVal)
When parsing the XML into JSONML, specifies if values should be kept as strings (true
), or if they should try to be guessed into JSON values (numeric, boolean, string)<T extends ParserConfiguration>
TParserConfiguration. withMaxNestingDepth(int maxNestingDepth)
Defines the maximum nesting depth that the parser will descend before throwing an exception when parsing the XML into JSONML.Methods in org.json that return ParserConfiguration Modifier and Type Method Description protected ParserConfiguration
ParserConfiguration. clone()
Provides a new instance of the same configuration.
-