List of usage examples for java.io FilePermission hashCode
@Override public int hashCode()
From source file:Main.java
public static void main(String[] args) throws IOException { FilePermission fp = new FilePermission("C://test.txt", "read"); // the hash code value int hash = fp.hashCode(); System.out.print("Hash Code: " + hash); }