- JSON_TIME_LENGTH - Field in Dates
-
- JsonBuilder - Class in groovy.json
A builder for creating JSON payloads.
- JsonBuilder(Object) - Constructor in JsonBuilder
-
Instantiates a JSON builder with some existing data structure.
- JsonDelegate - Class in groovy.json
Utility class used as delegate of closures representing JSON objects.
- JsonException - Class 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(Throwable) - Constructor in JsonException
-
- JsonFastParser - Class in groovy.json.internal
This works in index overlay mode or chop mode.
- JsonFastParser(boolean, boolean, boolean, boolean) - Constructor in JsonFastParser
-
- JsonLexer - Class in groovy.json
The lexer reads JSON tokens in a streaming fashion from the underlying reader.
- JsonLexer(Reader) - Constructor in JsonLexer
-
Instanciates a lexer with a reader from which to read JSON tokens.
- JsonOutput - Class in groovy.json
Class responsible for the actual String serialization of the possible values of a JSON structure.
- JsonParser - Interface in groovy.json
This is the parser interface that backs the new JsonSlurper.
- JsonParserLax - Class in groovy.json.internal
@author Richard Hightower
- JsonParserLax(boolean, boolean, boolean, boolean) - Constructor in JsonParserLax
-
- JsonParserType - Enum in groovy.json
Allows selection of parser type for new new JsonSlurper.
- JsonParserUsingCharacterSource - Class in groovy.json.internal
Converts an input JSON String into Java objects works with String or char array
as input.
- JsonSlurper - Class in groovy.json
This has the same interface as the original JsonSlurper written for version 1.8.0, but its
implementation has completely changed.
- JsonSlurperClassic - Class in groovy.json
This is the original slurper included in case someone relies on its exact behavior.
- JsonStringDecoder - Class in groovy.json.internal
@author Richard Hightower
- JsonToken - Class in groovy.json
A JSON token, with a type, line / column information, and the text of that token.
- JsonTokenType - Enum in groovy.json
The original slurper and lexer use this class.