Example usage for java.time ZoneOffset hashCode

List of usage examples for java.time ZoneOffset hashCode

Introduction

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

Prototype

@Override
public int hashCode() 

Source Link

Document

A hash code for this offset.

Usage

From source file:Main.java

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