I have a Map<String, List<Object>> , I would like to convert it to Map<String, List<String>> in java 8 .
In Java 1.7 I was using a function to extract value from Map and then wrote another method declared empty List , used for loop to extract each element and then added to List Object in java 1.7
Any suggestions to do same in java 8 using lambda expressions
Thanks in advance