|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use CustomizeJsonParser | |
---|---|
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. |
Uses of CustomizeJsonParser in com.google.api.client.json |
---|
Methods in com.google.api.client.json with parameters of type CustomizeJsonParser | ||
---|---|---|
|
JsonParser.parse(Class<T> destinationClass,
CustomizeJsonParser customizeParser)
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 destination,
CustomizeJsonParser customizeParser)
Parse a JSON object from the given JSON parser into the given destination object, optionally using the given parser customizer. |
|
Object |
JsonParser.parse(Type dataType,
boolean close,
CustomizeJsonParser customizeParser)
Parse a JSON object, array, or value into a new instance of the given destination class, optionally using the given parser customizer. |
|
|
JsonParser.parseAndClose(Class<T> destinationClass,
CustomizeJsonParser customizeParser)
Parse a JSON object, array, or value into a new instance of the given destination class using JsonParser.parse(Class, CustomizeJsonParser) , and then closes the parser. |
|
void |
JsonParser.parseAndClose(Object destination,
CustomizeJsonParser customizeParser)
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. |
|
|
JsonParser.parseArray(Class<?> destinationCollectionClass,
Class<T> destinationItemClass,
CustomizeJsonParser customizeParser)
Parse a JSON Array from the given JSON parser into the given destination collection, optionally using the given parser customizer. |
|
|
JsonParser.parseArray(Collection<? super T> destinationCollection,
Class<T> destinationItemClass,
CustomizeJsonParser customizeParser)
Parse a JSON Array from the given JSON parser into the given destination collection, optionally using the given parser customizer. |
|
|
JsonParser.parseArrayAndClose(Class<?> destinationCollectionClass,
Class<T> destinationItemClass,
CustomizeJsonParser customizeParser)
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. |
|
|
JsonParser.parseArrayAndClose(Collection<? super T> destinationCollection,
Class<T> destinationItemClass,
CustomizeJsonParser customizeParser)
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. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |