Example usage for java.nio.file.attribute FileTime hashCode

List of usage examples for java.nio.file.attribute FileTime hashCode

Introduction

In this page you can find the example usage for java.nio.file.attribute FileTime hashCode.

Prototype

@Override
public int hashCode() 

Source Link

Document

Computes a hash code for this file time.

Usage

From source file:Main.java

public static void main(String[] args) throws Exception {

    long time = System.currentTimeMillis();
    FileTime fileTime = FileTime.fromMillis(time);
    System.out.println(fileTime.hashCode());

}