Sunday, September 7, 2025
HomeLanguagesJavaLocalDate getChronology() method in Java

LocalDate getChronology() method in Java

The getChronology() method of LocalDate class 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 LocalDate in Java:

Program 1:




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


Output:

ISO

Reference: https://docs.oracle.com/javase/10/docs/api/java/time/LocalDate.html#getChronology()

RELATED ARTICLES

Most Popular

Dominic
32271 POSTS0 COMMENTS
Milvus
82 POSTS0 COMMENTS
Nango Kala
6641 POSTS0 COMMENTS
Nicole Veronica
11808 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11870 POSTS0 COMMENTS
Shaida Kate Naidoo
6755 POSTS0 COMMENTS
Ted Musemwa
7030 POSTS0 COMMENTS
Thapelo Manthata
6705 POSTS0 COMMENTS
Umr Jansen
6721 POSTS0 COMMENTS