5

他のオブジェクトのリストを含むオブジェクトがあり、コンテナーのいくつかのプロパティによってマップされた、含まれているオブジェクトのフラットマップを返したいと考えています。ストリームとラムダのみを使用して可能であれば誰ですか?

public class Selling{
   String clientName;
   double total;
   List<Product> products;
}

public class Product{
   String name;
   String value;
}

操作のリストを考えてみましょう:

List<Selling> operations = new ArrayList<>();

operations.stream()
     .filter(s -> s.getTotal > 10)
     .collect(groupingBy(Selling::getClientName, mapping(Selling::getProducts, toList());

結果は親切だろう

Map<String, List<List<Product>>> 

しかし、私はそれを平らにしたいと思います

Map<String, List<Product>>
4

2 に答える 2

9

次のようなものを試すことができます:

Map<String, List<Product>> res = operations.parallelStream().filter(s -> s.getTotal() > 10)
    .collect(groupingBy(Selling::getClientName, mapping(Selling::getProducts,
        Collector.of(ArrayList::new, List::addAll, (x, y) -> {
            x.addAll(y);
            return x;
        }))));
于 2015-08-27T15:14:16.380 に答える