|
1 | 1 | /*
|
2 |
| - * Copyright (c) 2007, 2023, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 2007, 2024, Oracle and/or its affiliates. All rights reserved. |
3 | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
4 | 4 | *
|
5 | 5 | * This code is free software; you can redistribute it and/or modify it
|
@@ -3743,7 +3743,7 @@ public static Path writeString(Path path, CharSequence csq, Charset cs, OpenOpti
|
3743 | 3743 | // -- Stream APIs --
|
3744 | 3744 |
|
3745 | 3745 | /**
|
3746 |
| - * Return a lazily populated {@code Stream}, the elements of |
| 3746 | + * Returns a lazily populated {@code Stream}, the elements of |
3747 | 3747 | * which are the entries in the directory. The listing is not recursive.
|
3748 | 3748 | *
|
3749 | 3749 | * <p> The elements of the stream are {@link Path} objects that are
|
@@ -3834,11 +3834,12 @@ public Path next() {
|
3834 | 3834 | }
|
3835 | 3835 |
|
3836 | 3836 | /**
|
3837 |
| - * Return a {@code Stream} that is lazily populated with {@code |
| 3837 | + * Returns a {@code Stream} that is lazily populated with {@code |
3838 | 3838 | * Path} by walking the file tree rooted at a given starting file. The
|
3839 |
| - * file tree is traversed <em>depth-first</em>, the elements in the stream |
3840 |
| - * are {@link Path} objects that are obtained as if by {@link |
3841 |
| - * Path#resolve(Path) resolving} the relative path against {@code start}. |
| 3839 | + * file tree is traversed <em>depth-first</em> with a directory visited |
| 3840 | + * before the entries in that directory. The elements in the stream are |
| 3841 | + * {@link Path} objects that are obtained as if by {@link Path#resolve(Path) |
| 3842 | + * resolving} the relative path against {@code start}. |
3842 | 3843 | *
|
3843 | 3844 | * <p> The {@code stream} walks the file tree as elements are consumed.
|
3844 | 3845 | * The {@code Stream} returned is guaranteed to have at least one
|
@@ -3933,11 +3934,12 @@ public static Stream<Path> walk(Path start,
|
3933 | 3934 | }
|
3934 | 3935 |
|
3935 | 3936 | /**
|
3936 |
| - * Return a {@code Stream} that is lazily populated with {@code |
| 3937 | + * Returns a {@code Stream} that is lazily populated with {@code |
3937 | 3938 | * Path} by walking the file tree rooted at a given starting file. The
|
3938 |
| - * file tree is traversed <em>depth-first</em>, the elements in the stream |
3939 |
| - * are {@link Path} objects that are obtained as if by {@link |
3940 |
| - * Path#resolve(Path) resolving} the relative path against {@code start}. |
| 3939 | + * file tree is traversed <em>depth-first</em> with a directory visited |
| 3940 | + * before the entries in that directory. The elements in the stream are |
| 3941 | + * {@link Path} objects that are obtained as if by {@link Path#resolve(Path) |
| 3942 | + * resolving} the relative path against {@code start}. |
3941 | 3943 | *
|
3942 | 3944 | * <p> This method works as if invoking it were equivalent to evaluating the
|
3943 | 3945 | * expression:
|
@@ -3978,7 +3980,7 @@ public static Stream<Path> walk(Path start, FileVisitOption... options) throws I
|
3978 | 3980 | }
|
3979 | 3981 |
|
3980 | 3982 | /**
|
3981 |
| - * Return a {@code Stream} that is lazily populated with {@code |
| 3983 | + * Returns a {@code Stream} that is lazily populated with {@code |
3982 | 3984 | * Path} by searching for files in a file tree rooted at a given starting
|
3983 | 3985 | * file.
|
3984 | 3986 | *
|
|
0 commit comments