Example usage for java.time Year getLong

List of usage examples for java.time Year getLong

Introduction

In this page you can find the example usage for java.time Year getLong.

Prototype

@Override
public long getLong(TemporalField field) 

Source Link

Document

Gets the value of the specified field from this year as a long .

Usage

From source file:Main.java

public static void main(String[] args) {
    Year y = Year.of(2014);

    System.out.println(y.getLong(ChronoField.YEAR));

}