See: Description
Class | Description |
---|---|
Json |
This class serves as the entry point to the minimal-json API.
|
JsonArray |
Represents a JSON array, an ordered collection of JSON values.
|
JsonHandler<A,O> |
A handler for parser events.
|
JsonNumber |
JSON number.
|
JsonObject |
Represents a JSON object, a set of name/value pairs, where the names are strings and the values
are JSON values.
|
JsonParser |
A streaming parser for JSON text.
|
JsonString | |
JsonValue |
Represents a JSON value.
|
JsonWriter | |
Location |
An immutable object that represents a location in the parsed text.
|
Member |
Represents a member of a JSON object, a pair of a name and a value.
|
PrettyPrint |
Enables human readable JSON output by inserting whitespace between values.after commas and
colons.
|
WriterConfig |
Controls the formatting of the JSON output.
|
WritingBuffer |
A lightweight writing buffer to reduce the amount of write operations to be performed on the
underlying writer.
|
Exception | Description |
---|---|
ParseException |
An unchecked exception to indicate that an input does not qualify as valid JSON.
|