| java Programming Glossary: jsondeserializationcontextJava: Using Gson in an Applet causes SecurityException http://stackoverflow.com/questions/3850859/java-using-gson-in-an-applet-causes-securityexception  ObjectNavigator.java 109 at com.google.gson.JsonDeserializationContextDefault.fromJsonObject JsonDeserializationContextDefault.java.. JsonDeserializationContextDefault.java 73 at com.google.gson.JsonDeserializationContextDefault.deserialize.. 73 at com.google.gson.JsonDeserializationContextDefault.deserialize JsonDeserializationContextDefault.java 51.. 
 Polymorphism with gson [closed] http://stackoverflow.com/questions/5800433/polymorphism-with-gson  public IAnimal deserialize JsonElement json Type typeOfT JsonDeserializationContext context throws JsonParseException JsonObject jsonObject json.getAsJsonObject.. 
 GSON deserializing key-value to custom object http://stackoverflow.com/questions/5845822/gson-deserializing-key-value-to-custom-object  MyCustomClass deserialize JsonElement json Type typeOfT JsonDeserializationContext ctx throws JsonParseException  JsonObject obj json.getAsJsonObject.. 
 How do I write a custom JSON deserializer for Gson? http://stackoverflow.com/questions/6096940/how-do-i-write-a-custom-json-deserializer-for-gson  public User deserialize JsonElement json Type type  JsonDeserializationContext context throws JsonParseException return new User json.getAsJsonPrimitive.. public User deserialize JsonElement json Type type JsonDeserializationContext context throws JsonParseException JsonObject jobject JsonObject.. 
 Parsing JSON with GSON, object sometimes contains list sometimes contains object http://stackoverflow.com/questions/6223023/parsing-json-with-gson-object-sometimes-contains-list-sometimes-contains-object  public Child deserialize JsonElement json Type typeOfT JsonDeserializationContext context throws JsonParseException if json instanceof JsonArray.. 
 GSON - Date format http://stackoverflow.com/questions/6873020/gson-date-format  public Date deserialize JsonElement json Type typeOfT JsonDeserializationContext context throws JsonParseException return json null null new.. 
 |