I'd like to create a Path instance for an enum constructor:
/** Temporary paths. */
public enum PATHS {
/** First temporary directory. */
PATH1(Files.createTempDirectory(new StringBuilder("tnk").append(File.separator).append("path1")
.toString())),
/** Second temporary directory. */
PATH2(Files.createTempDirectory(new StringBuilder("tnk").append(File.separator).append("path2")
.toString()));
/** {@link Path} reference. */
final Path mPath;
/**
* Constructor.
*
* @param pPath
* {@link Path} reference
*/
PATHS(final Path pPath) {
mPath = pPath;
}
/**
* Get {@link File} associated with the path.
*
* @return {@link File} reference
*/
public File getFile() {
return mPath.toFile();
}
}
Files.createTempDirectory(String, FilleAttribute<?> atts)throws a checked exception (IOException) but how do I catch or throw the exception or more precisely how do I handle the exception? Seems to be a dump question, but I have no idea right now.