| Enum | Description |
|---|---|
| JsonIgnore.IgnorePolicy | |
| JsonObject.FieldDetectionPolicy | |
| JsonObject.FieldNamingPolicy |
| Annotation Type | Description |
|---|---|
| JsonField |
Declare that a variable should be parsed/serialized.
|
| JsonIgnore |
Declare that a variable should NOT be parsed/serialized when using a fieldDetectionPolicy other than
ANNOTATIONS_ONLY.
|
| JsonObject |
Declare that a Java object is parsable and serializable.
|
| OnJsonParseComplete |
Declare that a method should be called once a class has been parsed from JSON.
|
| OnPreJsonSerialize |
Declare that a method should be called before a class is serialized to JSON.
|