package java.nio.file;
import java.io.File;
public class Path {
public Path getFileName() {
return null;
}
public Path getParent() {
return null;
}
public Path resolve(String other) {
return null;
}
public File toFile() {
return null;
}
}