Example usage for java.time Year from

List of usage examples for java.time Year from

Introduction

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

Prototype

public static Year from(TemporalAccessor temporal) 

Source Link

Document

Obtains an instance of Year from a temporal object.

Usage

From source file:Main.java

public static void main(String[] args) {
    Year y = Year.from(LocalDate.now());
    System.out.println(y);

}