| Package | Description |
|---|---|
| com.google.api.client.json |
Utilities for JSON as specified in
RFC 4627: The application/json Media Type for JavaScript Object Notation (JSON) and
Introducing JSON.
|
| Modifier and Type | Method and Description |
|---|---|
<T> T |
JsonParser.parse(Class
Beta
Parse a JSON object, array, or value into a new instance of the given destination class, optionally using the given parser customizer. |
void |
JsonParser.parse(Object
Beta
Parse a JSON object from the given JSON parser into the given destination object, optionally using the given parser customizer. |
Object |
JsonParser.parse(Type
Beta
Parse a JSON object, array, or value into a new instance of the given destination class, optionally using the given parser customizer. |
<T> T |
JsonParser.parseAndClose(Class
Beta
Parse a JSON object, array, or value into a new instance of the given destination class using JsonParser, and then closes the parser.
|
void |
JsonParser.parseAndClose(Object
Beta
Parse a JSON Object from the given JSON parser -- which is closed after parsing completes -- into the given destination object, optionally using the given parser customizer. |
<T> Collection |
JsonParser.parseArray(Class
Beta
Parse a JSON Array from the given JSON parser into the given destination collection, optionally using the given parser customizer. |
<T> void |
JsonParser.parseArray(Collection
Beta
Parse a JSON Array from the given JSON parser into the given destination collection, optionally using the given parser customizer. |
<T> Collection |
JsonParser.parseArrayAndClose(Class
Beta
Parse a JSON Array from the given JSON parser (which is closed after parsing completes) into the given destination collection, optionally using the given parser customizer. |
<T> void |
JsonParser.parseArrayAndClose(Collection
Beta
Parse a JSON Array from the given JSON parser (which is closed after parsing completes) into the given destination collection, optionally using the given parser customizer. |