Interface JSONParser
access this type via: data.json.JSONParser (provides, requires or uses)
JSON parser: provide an entire JSON document as input and extract values of interest.
Functions
JSONElement parseDocument(char document[])
JSONElement getValue(JSONElement object, char name[])
JSONElement getValueByDot(char dotNotation[], JSONElement object)
char[] documentToString(JSONElement object)
JSONElement parseDocument(char document[])
Parse a JSON document, provided as a string, and return the root JSONElement of the document.
JSONElement getValue(JSONElement object, char name[])
Get a value from the given JSONElement.
JSONElement getValueByDot(char dotNotation[], JSONElement object)
Get a value using a dot format, for example 'person.name'.
char[] documentToString(JSONElement object)
Convert a parsed JSONElement into a string-based JSON document.