Interface | Description |
---|---|
DefaultAdapterOption |
Manage option of the default object adapter
|
OdinAdapter<T> |
The root interface for Odin Adapter, You have to implement
OdinInlineAdapter , OdinObjectAdapter or OdinImmutableAdapter to customize the serialization of an object |
OdinImmutableAdapter<T> |
This adapter can be used if you need to pass some content to the object constructor when you deserialize it.
|
OdinInlineAdapter<T,R> |
You can use this adapter to convert an object to another object, like Date to a String
|
OdinObjectAdapter<T> |
You can use this adapter if you need to customize the serialization and the deserialization of an object
|