I have a List and each object is a <String, Integer>. I have no control over the List since it is returned by an API method.
I'd like to cast the List to a Map. What is the best way to do this?
Thanks
|
|
Create a Map of the type you like (HashMap, TreeMap, HashTable,...) and then iterate through your list and add all elements one by one. There is no better way (except if you are willing to code your own map that is backed by this list which - in some cases - would be really good). You MAY set some options on your Map type before adding the elements (such as setting the size) because you already know how many elements to add. That may increase performance a little. Depends heavily on your use case. EDIT: I said this because I understand your question in a way that your lists contains POJOs with a string and an integer attribute. If that's different, then the answer may be different. |
|||
|
|
|
"Casting", i.e. treating the list as something of another type won't work unless the object returned by the API also implements Map (which it obviously doesn't). But you can create a Map out of the list's content. Furter: The list cannot contain
For such things, the obvious solution is as such:
If neither the list nor its entries won't change later, then this should suffice. If something can cange, then you must implement your own map that does an on-the-fly translation of the list. Depending on what changes, this is more or less complicated, but if everything is subject to change, then you could create a new class that translates the list into a map:
But usually, this would be overkill and the simple translating for-loop suffices. If you need more ways of handling maps - or if it isn't a map, but a Multimap with a key and more than one entries), then have a look at the Google Guava libraries which has handy index functions in com.google.common.collect.Maps. |
|||
|
|
Loop over the list and store them into a new Map:
Note that if you have multiple items in the list with the same String key, then they will overwrite each other in the map. |
|||
|
|
|
Not sure about what you mean about an object being a
you may lose data by key overriding though |
|||
|
|