How get value from LinkedHashMap based on index not on key? [duplicate]

You can’t get the value of the Map based on index, Maps just don’t work that way. A workaround would be to create a new list from your values and get the value based on index.

LinkedHashMap<String, List<String>> hMap;
List<List<String>> l = new ArrayList<List<String>>(hMap.values());
l.get(0);

Leave a Comment