Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Moshi HashMap deserializer

Tags:

android

moshi

I don't know if it is possible to deserialise arrays into hashMap i have got json :

"additionalProperties": [
{
  "$type": "Tfl.Api.Presentation.Entities.AdditionalProperties, Tfl.Api.Presentation.Entities",
  "category": "Description",
  "key": "TerminalName",
  "sourceSystemKey": "BikePoints",
  "value": "200017",
  "modified": "2016-05-19T12:02:39.82"
}
........
]

and for that json i have got list :

private List<AdditionalProperties> additionalProperties;

everything works perfect but how store that json in HashMap where Key is "key" (TerminalName)"

private HashMap<String,AdditionalProperties> additionalProperties;
like image 314
Łukasz Woźniczka Avatar asked May 19 '16 14:05

Łukasz Woźniczka


1 Answers

Moshi supports fields declared as Map but not as HashMap. This way Moshi can use a different implementation of Map that’s more appropriate than HashMap for decoded JSON. If you change your field’s type to Map<String,AdditionalProperties> it should work.

like image 170
Jesse Wilson Avatar answered Oct 27 '22 01:10

Jesse Wilson