- JsonException - Exception in groovy.json
-
JsonException is the exception thrown by the JSON builder and slurper classes,
whenever a problem occurs when creating or parsing JSON data structures.
- JsonException() - Constructor for exception groovy.json.JsonException
-
- JsonException(String) - Constructor for exception groovy.json.JsonException
-
- JsonException(String, Throwable) - Constructor for exception groovy.json.JsonException
-
- JsonException(Throwable) - Constructor for exception groovy.json.JsonException
-
- JsonLexer - Class in groovy.json
-
The lexer reads JSON tokens in a streaming fashion from the underlying reader.
- JsonLexer(Reader) - Constructor for class groovy.json.JsonLexer
-
Instanciates a lexer with a reader from which to read JSON tokens.
- JsonSlurper - Class in groovy.json
-
JSON slurper which parses text or reader content into a data structure of lists and maps.
- JsonSlurper() - Constructor for class groovy.json.JsonSlurper
-
- JsonToken - Class in groovy.json
-
A JSON token, with a type, line / column information, and the text of that token.
- JsonToken() - Constructor for class groovy.json.JsonToken
-
- JsonTokenType - Enum in groovy.json
-
Enum listing all the possible JSON tokens that should be recognized by the lexer.