Home | History | Annotate | Download | only in fs

Lines Matching refs:Path

35  * Base implementation class of {@code Path}.
38 abstract class AbstractPath implements Path {
52 public final Path resolve(String other) {
57 public final Path resolveSibling(Path other) {
60 Path parent = getParent();
65 public final Path resolveSibling(String other) {
70 public final Iterator<Path> iterator() {
71 return new Iterator<Path>() {
78 public Path next() {
80 Path result = getName(i);