Uses of Class
org.json.JSONMLParserConfiguration
-
-
Uses of JSONMLParserConfiguration in org.json
Fields in org.json declared as JSONMLParserConfiguration Modifier and Type Field Description static JSONMLParserConfiguration
JSONMLParserConfiguration. KEEP_STRINGS
Original configuration of the XML to JSONML Parser except that values are kept as strings.static JSONMLParserConfiguration
JSONMLParserConfiguration. ORIGINAL
Original Configuration of the XML to JSONML Parser.Methods in org.json that return JSONMLParserConfiguration Modifier and Type Method Description protected JSONMLParserConfiguration
JSONMLParserConfiguration. clone()
Provides a new instance of the same configuration.JSONMLParserConfiguration
JSONMLParserConfiguration. withKeepStrings(boolean newVal)
JSONMLParserConfiguration
JSONMLParserConfiguration. withMaxNestingDepth(int maxNestingDepth)
Methods in org.json with parameters of type JSONMLParserConfiguration Modifier and Type Method Description private static java.lang.Object
JSONML. parse(XMLTokener x, boolean arrayForm, JSONArray ja, JSONMLParserConfiguration config, int currentNestingDepth)
Parse XML values and store them in a JSONArray.static JSONArray
JSONML. toJSONArray(java.lang.String string, JSONMLParserConfiguration config)
Convert a well-formed (but not necessarily valid) XML string into a JSONArray using the JsonML transform.static JSONArray
JSONML. toJSONArray(XMLTokener x, JSONMLParserConfiguration config)
Convert a well-formed (but not necessarily valid) XML string into a JSONArray using the JsonML transform.static JSONObject
JSONML. toJSONObject(java.lang.String string, JSONMLParserConfiguration config)
Convert a well-formed (but not necessarily valid) XML string into a JSONObject using the JsonML transform.static JSONObject
JSONML. toJSONObject(XMLTokener x, JSONMLParserConfiguration config)
Convert a well-formed (but not necessarily valid) XML string into a JSONObject using the JsonML transform.
-