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

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