Example usage for java.time Year MIN_VALUE

List of usage examples for java.time Year MIN_VALUE

Introduction

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

Prototype

int MIN_VALUE

To view the source code for java.time Year MIN_VALUE.

Click Source Link

Document

The minimum supported year, '-999,999,999'.

Usage

From source file:Main.java

public static void main(String[] args) {
    int i = Year.MIN_VALUE;
    System.out.println(i);

}