List of usage examples for java.nio.file Path hashCode
int hashCode();
From source file:Main.java
public static void main(String[] args) { Path path = Paths.get("C:", "tutorial/Java/JavaFX", "Topic.txt"); System.out.println(path.hashCode()); }
From source file:ubicrypt.core.UbiConf.java
@Bean public int deviceId(Path basePath) { return Utils.deviceId() + basePath.hashCode() % 99; }