Example usage for java.time ZoneId hashCode

List of usage examples for java.time ZoneId hashCode

Introduction

In this page you can find the example usage for java.time ZoneId hashCode.

Prototype

@Override
public int hashCode() 

Source Link

Document

A hash code for this time-zone ID.

Usage

From source file:Main.java

public static void main(String[] args) {
    ZoneId z = ZoneId.systemDefault();
    System.out.println(z.hashCode());
}