![JAR search and dependency download from the Maven repository](/logo.png)
com.carrotsearch.hppc.generator.TemplateFile Maven / Gradle / Ivy
package com.carrotsearch.hppc.generator;
import java.nio.file.Path;
class TemplateFile {
public final Path path;
public TemplateFile(Path path) {
this.path = path;
}
public String getFileName() {
return path.getFileName().toString();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy