Uses of Class
com.google.api.client.json.JsonParser

Packages that use JsonParser
com.google.api.client.http.json JSON HTTP library based on the pluggable HTTP library. 
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
com.google.api.client.json.gson Low-level implementation of the GSON parser library based on the GSON JSON library. 
com.google.api.client.json.jackson Low-level implementation of the JSON parser library based on the Jackson JSON library. 
 

Uses of JsonParser in com.google.api.client.http.json
 

Methods in com.google.api.client.http.json that return JsonParser
static JsonParser JsonHttpParser.parserForResponse(JsonFactory jsonFactory, HttpResponse response)
          Returns a JSON parser to use for parsing the given HTTP response.
 

Uses of JsonParser in com.google.api.client.json
 

Methods in com.google.api.client.json that return JsonParser
abstract  JsonParser JsonFactory.createJsonParser(InputStream in)
          Returns a new instance of a low-level JSON parser for the given input stream.
abstract  JsonParser JsonFactory.createJsonParser(Reader reader)
          Returns a new instance of a low-level JSON parser for the given reader.
abstract  JsonParser JsonFactory.createJsonParser(String value)
          Returns a new instance of a low-level JSON parser for the given string value.
abstract  JsonParser JsonParser.skipChildren()
          Skips to the matching JsonToken.END_ARRAY if current token is JsonToken.START_ARRAY, the matching JsonToken.END_OBJECT if the current token is JsonToken.START_OBJECT, else does nothing.
 

Uses of JsonParser in com.google.api.client.json.gson
 

Methods in com.google.api.client.json.gson that return JsonParser
 JsonParser GsonFactory.createJsonParser(InputStream in)
           
 JsonParser GsonFactory.createJsonParser(Reader reader)
           
 JsonParser GsonFactory.createJsonParser(String value)
           
 

Uses of JsonParser in com.google.api.client.json.jackson
 

Methods in com.google.api.client.json.jackson that return JsonParser
 JsonParser JacksonFactory.createJsonParser(InputStream in)
           
 JsonParser JacksonFactory.createJsonParser(Reader reader)
           
 JsonParser JacksonFactory.createJsonParser(String value)
           
 



Copyright © 2011-2012 Google. All Rights Reserved.