8271268: Fix Javadoc links for Stream.mapMulti
Reviewed-by: liach, psandoz
This commit is contained in:
parent
9688ec2d0d
commit
afa48333ab
@ -276,7 +276,7 @@ public interface Stream<T> extends BaseStream<T, Stream<T>> {
|
|||||||
* function to apply to each element which produces a stream
|
* function to apply to each element which produces a stream
|
||||||
* of new values
|
* of new values
|
||||||
* @return the new stream
|
* @return the new stream
|
||||||
* @see #mapMulti
|
* @see #mapMulti mapMulti
|
||||||
*/
|
*/
|
||||||
<R> Stream<R> flatMap(Function<? super T, ? extends Stream<? extends R>> mapper);
|
<R> Stream<R> flatMap(Function<? super T, ? extends Stream<? extends R>> mapper);
|
||||||
|
|
||||||
@ -296,7 +296,7 @@ public interface Stream<T> extends BaseStream<T, Stream<T>> {
|
|||||||
* function to apply to each element which produces a stream
|
* function to apply to each element which produces a stream
|
||||||
* of new values
|
* of new values
|
||||||
* @return the new stream
|
* @return the new stream
|
||||||
* @see #flatMap(Function)
|
* @see #flatMap flatMap
|
||||||
*/
|
*/
|
||||||
IntStream flatMapToInt(Function<? super T, ? extends IntStream> mapper);
|
IntStream flatMapToInt(Function<? super T, ? extends IntStream> mapper);
|
||||||
|
|
||||||
@ -316,7 +316,7 @@ public interface Stream<T> extends BaseStream<T, Stream<T>> {
|
|||||||
* function to apply to each element which produces a stream
|
* function to apply to each element which produces a stream
|
||||||
* of new values
|
* of new values
|
||||||
* @return the new stream
|
* @return the new stream
|
||||||
* @see #flatMap(Function)
|
* @see #flatMap flatMap
|
||||||
*/
|
*/
|
||||||
LongStream flatMapToLong(Function<? super T, ? extends LongStream> mapper);
|
LongStream flatMapToLong(Function<? super T, ? extends LongStream> mapper);
|
||||||
|
|
||||||
@ -336,7 +336,7 @@ public interface Stream<T> extends BaseStream<T, Stream<T>> {
|
|||||||
* function to apply to each element which produces a stream
|
* function to apply to each element which produces a stream
|
||||||
* of new values
|
* of new values
|
||||||
* @return the new stream
|
* @return the new stream
|
||||||
* @see #flatMap(Function)
|
* @see #flatMap flatMap
|
||||||
*/
|
*/
|
||||||
DoubleStream flatMapToDouble(Function<? super T, ? extends DoubleStream> mapper);
|
DoubleStream flatMapToDouble(Function<? super T, ? extends DoubleStream> mapper);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user