| Interface | Description |
|---|---|
| JsonSerializable |
Objects, which implement this interface, can be directly serialized as
JsonValue. |
| 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.
|
| JsonBuilder |
A simple builder which allows to create a JsonValue from a java object.
|
| JsonHandler<A,O> |
A handler for parser events.
|
| JsonMapper |
Allows simple mapping of JSON objects to Java Objects
|
| JsonObject |
Represents a JSON object, a set of name/value pairs, where the names are strings and the values
are JSON values.
|
| JsonObject.Member |
Represents a member of a JSON object, a pair of a name and a value.
|
| JsonParser |
A streaming parser for JSON text.
|
| JsonValue |
Represents a JSON value.
|
| Location |
An immutable object that represents a location in the parsed text.
|
| PrettyPrint |
Enables human readable JSON output by inserting whitespace between values.after commas and
colons.
|
| WriterConfig |
Controls the formatting of the JSON output.
|
| Exception | Description |
|---|---|
| ParseException |
An unchecked exception to indicate that an input does not qualify as valid JSON.
|