Searched defs:groupingBy (Results 1 - 1 of 1) sorted by relevance

/libcore/ojluni/src/main/java/java/util/stream/
H A DCollectors.java87 * .collect(Collectors.groupingBy(Employee::getDepartment));
92 * .collect(Collectors.groupingBy(Employee::getDepartment,
332 * multi-level reduction, such as downstream of a {@code groupingBy} or
337 * = people.stream().collect(groupingBy(Person::getCity,
643 * multi-level reduction, downstream of {@code groupingBy} or
678 * multi-level reduction, downstream of {@code groupingBy} or
687 * = people.stream().collect(groupingBy(Person::getCity, reducing(BinaryOperator.maxBy(byHeight))));
730 * multi-level reduction, downstream of {@code groupingBy} or
740 * = people.stream().collect(groupingBy(Person::getCity,
783 * groupingBy(classifie
804 groupingBy(Function<? super T, ? extends K> classifier) { method in class:Collectors
851 Collector<T, ?, Map<K, D>> groupingBy(Function<? super T, ? extends K> classifier, method in class:Collectors
901 Collector<T, ?, M> groupingBy(Function<? super T, ? extends K> classifier, method in class:Collectors
[all...]

Completed in 5 milliseconds