// given a set of Item objects, group them by the managers of creator and owners
Map<String, List<Item>> managersItems =
itemSet.parallelStream().flatMap(item -> {
// get the list of the creator and owners
List<String> users = new ArrayList();
users.add(item.getCreator());
users.addAll(item.getOwners());
return Stream.of(users.toArray(new String[] {})).map(user -> {
LdapUserInfo ldapUser = LdapUserInfoFactory.create(user);
String manager = ldapUser.getManager();
return new AbstractMap.SimpleImmutableEntry<String, Item(manager, item);
});
}).collect(
Collectors.groupingBy(Map.Entry::getKey, Collectors.mapping(Map.Entry::getValue, Collectors.toList())));
This code compiles fine in Eclipse Mars, but gets the following eror in Eclipse Luna:
Type mismatch: cannot convert from
Map<Object,List<Object>>
toMap<String,List<WeblabInfo>>
If I do not assign the returned to a Map
with Map<String, List<Item>> managersItem =
in Eclipse Luna, the error is at Map.Entry::getKey
and Map.Entry::getValue
statement with message:
The type
Map.Entry
does not definegetKey(Object)
that is applicable here".
What did I do wrong?