Uses of Class
com.google.gson.JsonParseException

Packages that use JsonParseException
com.google.gson This package provides the Gson class to convert Json to Java and vice-versa. 
 

Uses of JsonParseException in com.google.gson
 

Methods in com.google.gson that throw JsonParseException
<T> T
JsonDeserializationContext.deserialize(JsonElement json, Type typeOfT)
          Invokes default deserialization on the specified object.
 T JsonDeserializer.deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context)
          Gson invokes this call-back method during deserialization when it encounters a field of the specified type.
<T> T
Gson.fromJson(JsonElement json, Class<T> classOfT)
          This method deserializes the Json read from the specified parse tree into an object of the specified type.
<T> T
Gson.fromJson(JsonElement json, Type typeOfT)
          This method deserializes the Json read from the specified parse tree into an object of the specified type.
<T> T
Gson.fromJson(Reader json, Class<T> classOfT)
          This method deserializes the Json read from the specified reader into an object of the specified class.
<T> T
Gson.fromJson(Reader json, Type typeOfT)
          This method deserializes the Json read from the specified reader into an object of the specified type.
<T> T
Gson.fromJson(String json, Class<T> classOfT)
          This method deserializes the specified Json into an object of the specified class.
<T> T
Gson.fromJson(String json, Type typeOfT)
          This method deserializes the specified Json into an object of the specified type.
 JsonElement JsonStreamParser.next()
          Returns the next available JsonElement on the reader.
 JsonElement JsonParser.parse(Reader json)
          Parses the specified JSON string into a parse tree
 JsonElement JsonParser.parse(String json)
          Parses the specified JSON string into a parse tree
 



Copyright © 2008-2009. All Rights Reserved.