| Interface | Description |
|---|---|
| IJsonBackedObject |
An object that was parsed from JSON
|
| ISerializer |
Serializes and deserializes items from strings into their types
|
| Class | Description |
|---|---|
| AdditionalDataManager | |
| ByteArraySerializer |
Serializer for byte[]s
|
| CalendarSerializer |
Serializes and deserializes a string
https://github.com/MSOpenTech/orc-for-android/blob/master/src/orc-android/
src/main/java/com/microsoft/services/orc/serialization/impl/CalendarSerializer.java
|
| DefaultSerializer |
The default serializer implementation for the SDK
|
| EnumSetSerializer |
Serializes and deserializes EnumSets
The Graph service expects a single enum value as a comma-delimited string
Here, we flatten the EnumSet to serialize the object
and insert the response into an array to deserialize back to an EnumSet
|
| FallbackTypeAdapterFactory |
Handles serialization/deserialization for special types (especially of
fields which are not caught by registering a type adapter).
|