I need to transform a map:
Map<String, List<Employee>> departmentWiseEmployees
to
Map<String, List<String>> departmentWiseEmployeeNames
…using Java lambda.
Mostly I see a 2nd level stream processing over the Map’s entryset.
What would be an elegant way truly leveraging Java stream processing feature?