Lines Matching refs:other
42 public final boolean startsWith(String other) {
43 return startsWith(getFileSystem().getPath(other));
47 public final boolean endsWith(String other) {
48 return endsWith(getFileSystem().getPath(other));
52 public final Path resolve(String other) {
53 return resolve(getFileSystem().getPath(other));
57 public final Path resolveSibling(Path other) {
58 if (other == null)
61 return (parent == null) ? other : parent.resolve(other);
65 public final Path resolveSibling(String other) {
66 return resolveSibling(getFileSystem().getPath(other));