8231161: Wrong return type in code sample in Collector API documentation

Correct declaration of container from R to A and add compilation test

Reviewed-by: smarks, lancea
This commit is contained in:
Julia Boes 2019-10-03 18:59:56 +01:00
parent f1a1fadb63
commit 4dafa3033f
2 changed files with 111 additions and 2 deletions

View file

@ -1,5 +1,5 @@
/* /*
* Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved. * Copyright (c) 2012, 2019, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
* *
* This code is free software; you can redistribute it and/or modify it * This code is free software; you can redistribute it and/or modify it
@ -33,6 +33,10 @@ import java.util.function.BinaryOperator;
import java.util.function.Function; import java.util.function.Function;
import java.util.function.Supplier; import java.util.function.Supplier;
// A compilation test for the code snippets in this class-level javadoc can be found at:
// test/jdk/java/util/stream/test/org/openjdk/tests/java/util/stream/CollectorExample.java
// The test needs to be updated if the examples in this javadoc change or new examples are added.
/** /**
* A <a href="package-summary.html#Reduction">mutable reduction operation</a> that * A <a href="package-summary.html#Reduction">mutable reduction operation</a> that
* accumulates input elements into a mutable result container, optionally transforming * accumulates input elements into a mutable result container, optionally transforming
@ -154,7 +158,7 @@ import java.util.function.Supplier;
* Performing a reduction operation with a {@code Collector} should produce a * Performing a reduction operation with a {@code Collector} should produce a
* result equivalent to: * result equivalent to:
* <pre>{@code * <pre>{@code
* R container = collector.supplier().get(); * A container = collector.supplier().get();
* for (T t : data) * for (T t : data)
* collector.accumulator().accept(container, t); * collector.accumulator().accept(container, t);
* return collector.finisher().apply(container); * return collector.finisher().apply(container);

View file

@ -0,0 +1,105 @@
/*
* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 2 only, as
* published by the Free Software Foundation.
*
* This code is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
* version 2 for more details (a copy is included in the LICENSE file that
* accompanied this code).
*
* You should have received a copy of the GNU General Public License version
* 2 along with this work; if not, write to the Free Software Foundation,
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
*
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
* or visit www.oracle.com if you need additional information or have any
* questions.
*/
package org.openjdk.tests.java.util.stream;
/*
* THE CONTENTS OF THIS FILE HAVE TO BE IN SYNC WITH THE EXAMPLES USED
* IN THE JAVADOC.
*
* @test
* @bug 8231161
* @compile CollectorExample.java
* @summary Compilation test only. Compile code snippets from
* java.util.stream.Collector class-level API documentation
*/
import java.util.*;
import java.util.function.BiConsumer;
import java.util.function.BinaryOperator;
import java.util.function.Function;
import java.util.function.Supplier;
import java.util.stream.Collector;
import java.util.stream.Collectors;
public class CollectorExample {
// Empty helper classes
class Widget {
}
class Employee {
public int getSalary() {
return 0; // money isn't everything
}
public Department getDepartment() {
return new Department();
}
}
class Department {
}
<T, A, R> void testSnippet1(Collector<T, A, R> collector, T t1, T t2) {
Supplier<A> supplier = collector.supplier();
BiConsumer<A, T> accumulator = collector.accumulator();
BinaryOperator<A> combiner = collector.combiner();
Function<A, R> finisher = collector.finisher();
// Example start
A a1 = supplier.get();
accumulator.accept(a1, t1);
accumulator.accept(a1, t2);
R r1 = finisher.apply(a1);
A a2 = supplier.get();
accumulator.accept(a2, t1);
A a3 = supplier.get();
accumulator.accept(a3, t2);
R r2 = finisher.apply(combiner.apply(a2, a3));
}
void testSnippet2() {
Collector<Widget, ?, TreeSet<Widget>> intoSet =
Collector.of(TreeSet::new, TreeSet::add,
(left, right) -> { left.addAll(right); return left; });
}
<T, A, R> void testSnippet3(Collector<T, A, R> collector, Collection<T> data) {
A container = collector.supplier().get();
for (T t : data)
collector.accumulator().accept(container, t);
collector.finisher().apply(container);
}
void testSnippet4and5() {
Collector<Employee, ?, Integer> summingSalaries
= Collectors.summingInt(Employee::getSalary);
Collector<Employee, ?, Map<Department, Integer>> summingSalariesByDept
= Collectors.groupingBy(Employee::getDepartment, summingSalaries);
}
}