storagehub-model/src/main/java/org/gcube/common/storagehub/model/Paths.java

22 lines
433 B
Java

package org.gcube.common.storagehub.model;
public class Paths {
public static Path getPath(String path){
return new Path(path);
}
public static Path append(Path path, Path anotherPath){
return path.append(anotherPath);
}
public static Path append(Path path, String anotherPath){
return path.append(anotherPath);
}
public static Path remove(Path path, Path anotherPath){
return path.remove(anotherPath);
}
}