All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.hajdbc.state.health.PathHelper Maven / Gradle / Ivy

There is a newer version: 3.6.61
Show newest version
package net.sf.hajdbc.state.health;


import java.nio.file.Path;
import java.nio.file.Paths;

public enum PathHelper {
  helper;
  public String getRoot(){
    return System.getProperty("app.root",System.getProperty("user.dir"));
  }

  public Path get(String ... more){
    return Paths.get(getRoot(),more);
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy