gson-comments/gson
Jake Wharton 8537c8932f Optimize list allocation for every reflective field.
The common cases (no @SerializedName and a single-value @SerializedName) now use a specialized one-element collection. Cases with alternate names use a much more space efficient ArrayList which is exactly sized.

This is also a performance win for adapter initialization since an index-based loop was used on the returned type for which LinkedList is not suited for.
2016-04-27 00:28:51 -04:00
..
docs/javadocs javadocs for 2.3.1 2014-11-20 10:17:53 +00:00
src Optimize list allocation for every reflective field. 2016-04-27 00:28:51 -04:00
assembly-descriptor.xml removed assembly-descriptor.xml from Gson jar 2011-04-13 18:26:51 +00:00
bnd.bnd Restore OSGi manifest headers 2016-02-24 09:14:09 -05:00
Gson 2.1 notes.txt Commit to factories as the mechanism to lookup type adapters. This uses factories for type hierarchy adapters. We keep a separate list of factories for tree-style adapters registered with registerTypeHierarchyAdapter to guarantee that these come after the non-hierarchy adapters. 2011-11-23 06:16:55 +00:00
LICENSE Updating License to contain the full text. 2011-04-12 21:21:39 +00:00
pom.xml [maven-release-plugin] prepare for next development iteration 2016-02-26 18:31:14 -08:00
README Readme points to the new homepage at Github 2015-07-29 18:45:24 +02:00

Gson is a Java library that can be used to convert a Java object into its 
JSON representation. It can also be used to convert a JSON string into an 
equivalent Java object. Gson can work with arbitrary Java objects including 
pre-existing objects that you do not have source-code of.

Complete Gson documentation is available at its project page 
https://github.com/google/gson