Open In App

ChronoLocalDate getChronology() method in Java with Examples

Last Updated : 04 Nov, 2019
Improve
Improve
Like Article
Like
Save
Share
Report

The getChronology() method of ChronoLocalDate interface in Java gets the chronology of this date, which is the ISO calendar system.

Syntax:

public IsoChronology getChronology()

Parameter: This method does not accept any parameter.

Return Value: It returns the ISO chronology and not null.

Below programs illustrate the getChronology() method of ChronoLocalDate in Java:

Program 1:




// Program to illustrate the getChronology() method
  
import java.util.*;
import java.time.chrono.*;
import java.time.*;
  
public class GfG {
    public static void main(String[] args)
    {
  
        ChronoLocalDate dt
            = LocalDate.parse("2018-11-27");
        System.out.println(dt.getChronology());
    }
}


Output:

ISO

Program 2:




// Program to illustrate the getChronology() method
  
import java.util.*;
import java.time.*;
import java.time.chrono.*;
  
public class GfG {
    public static void main(String[] args)
    {
  
        ChronoLocalDate dt
            = LocalDate.parse("2018-02-21");
        System.out.println(dt.getChronology());
    }
}


Output:

ISO

Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoLocalDate.html#getChronology–



Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads