An annotation that indicates the version number since a member or a type has been present.
This annotation is useful to manage versioning of your JSON classes for a web-service.
This annotation has no effect unless you build Gson
with a
GsonBuilder
and invoke the GsonBuilder.setVersion(double)
method.
Here is an example of how this annotation is meant to be used:
public class User { private String firstName; private String lastName; @Since(1.0) private String emailAddress; @Since(1.0) private String password; @Since(1.1) private Address address; }
If you created Gson with new Gson()
, the toJson()
and fromJson()
methods will use all the fields for serialization and deserialization. However, if you created
Gson with Gson gson = new GsonBuilder().setVersion(1.0).create()
then the
toJson()
and fromJson()
methods of Gson will exclude the address
field
since it's version number is set to 1.1
.
- Author:
- Inderjeet Singh, Joel Leitch
- See Also:
-
Required Element Summary
Modifier and TypeRequired ElementDescriptiondouble
The value indicating a version number since this member or type has been present.
-
Element Details
-
value
double valueThe value indicating a version number since this member or type has been present. The number is inclusive; annotated elements will be included ifgsonVersion >= value
.
-