Skip to content
Related Articles
Get the best out of our app
GeeksforGeeks App
Open App
geeksforgeeks
Browser
Continue

Related Articles

ChronoZonedDateTime getChronology() method in Java with Examples

Improve Article
Save Article
Like Article
Improve Article
Save Article
Like Article

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

Syntax:

default IsoChronology getChronology()

Parameter: This method does not accept any parameter.

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

Below programs illustrate the get() method:

Program 1:




// Java program to demonstrate
// ChronoZonedDateTime.get() method
  
import java.time.*;
import java.time.chrono.*;
import java.time.temporal.ChronoField;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a ChronoZonedDateTime object
        ChronoZonedDateTime zonedDT
            = ZonedDateTime.parse(
                "2018-12-06T19:21:12.123+05:30[Asia/Calcutta]");
  
        // print result
        System.out.println("Chronology: "
                           + zonedDT.getChronology());
    }
}

Output:

Chronology: ISO

Program 2:




// Java program to demonstrate
// ChronoZonedDateTime.get() method
  
import java.time.*;
import java.time.chrono.*;
import java.time.temporal.ChronoField;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // create a ChronoZonedDateTime object
        ChronoZonedDateTime zonedDT
            = ZonedDateTime.parse(
                "2018-10-25T23:12:31.123+02:00[Europe/Paris]");
  
        System.out.println("Chronology: "
                           + zonedDT.getChronology());
    }
}

Output:

Chronology: ISO

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


My Personal Notes arrow_drop_up
Last Updated : 09 Sep, 2019
Like Article
Save Article
Similar Reads
Related Tutorials