K - Type of the keys inside the SortedMapV - Type of the values inside the SortedMappublic final class SortedMapJsonDeserializer<K,V> extends BaseMapJsonDeserializer<SortedMap<K,V>,K,V>
JsonDeserializer implementation for SortedMap. The deserialization process returns a TreeMap.
Cannot be overriden. Use BaseMapJsonDeserializer.
keyDeserializer, valueDeserializer| Modifier and Type | Method and Description |
|---|---|
static <K,V> SortedMapJsonDeserializer<K,V> |
newInstance(KeyDeserializer<K> keyDeserializer,
JsonDeserializer<V> valueDeserializer)
newInstance
|
protected SortedMap<K,V> |
newMap()
Instantiates a new map for deserialization process.
|
doDeserialize, setBackReferencedeserialize, deserialize, deserializeNullValuepublic static <K,V> SortedMapJsonDeserializer<K,V> newInstance(KeyDeserializer<K> keyDeserializer, JsonDeserializer<V> valueDeserializer)
newInstance
K - Type of the keys inside the SortedMapV - Type of the values inside the SortedMapkeyDeserializer - KeyDeserializer used to deserialize the keys.valueDeserializer - JsonDeserializer used to deserialize the values.SortedMapJsonDeserializerCopyright © 2019. All rights reserved.