Example usage for java.time LocalDate getChronology

List of usage examples for java.time LocalDate getChronology

Introduction

In this page you can find the example usage for java.time LocalDate getChronology.

Prototype

@Override
public IsoChronology getChronology() 

Source Link

Document

Gets the chronology of this date, which is the ISO calendar system.

Usage

From source file:Main.java

public static void main(String[] args) {
    LocalDate a = LocalDate.of(2014, 6, 30);

    System.out.println(a.getChronology().getId());
}