HijrahChronology localDateTime() method in Java with Example : Set - 2

Last Updated : 2 Jun, 2021

The localDateTime() method of java.time.chrono.HijrahChronology class is used to retrieve the local date and time according to Hijrah calendar system from any other object of temporal accessor.

Syntax: 

public ChronoLocalDateTime localDateTime(TemporalAccessor temporal)

Parameter: This method takes the object of any temporal accessor as a parameter.

Return Value: This method returns the local date and time according to Hijrah calendar system from any other object of the temporal accessor.

Below are the examples to illustrate the localDateTime() method:

Example 1:  

Java
// Java program to demonstrate
// localDateTime() method

import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;

public class GFG {
    public static void main(String[] argv)
    {
        try {
            // creating and initializing
            // HijrahDate Object
            HijrahDate hidate
                = HijrahDate.now();

            // getting HijrahChronology
            // used in HijrahDate
            HijrahChronology crono
                = hidate.getChronology();

            // creating and initializing
            // TemporalAccessor object
            ZonedDateTime zonedate
                = ZonedDateTime.parse(
                    "2018-10-25T23:12:31."
                    + "123+02:00[Europe/Paris]");

            // getting HijrahDate for the
            // given TemporalAccessor object
            // by using localDateTime() method
            ChronoLocalDateTime<HijrahDate> date
                = crono.localDateTime(zonedate);

            // display the result
            System.out.println("HijrahDate is: "
                               + date);
        }
        catch (DateTimeException e) {
            System.out.println("passed parameter can"
                               + " not form a date");
            System.out.println("Exception thrown: " + e);
        }
    }
}

Output: 
HijrahDate is: Hijrah-umalqura AH 1440-02-16T23:12:31.123

 

Example 2: 

Java
// Java program to demonstrate
// localDateTime() method

import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;

public class GFG {
    public static void main(String[] argv)
    {
        try {
            // creating and initializing
            // HijrahDate Object
            HijrahDate hidate = HijrahDate.now();

            // getting HijrahChronology
            // used in HijrahDate
            HijrahChronology crono
                = hidate.getChronology();

            // creating and initializing
            // TemporalAccessor object
            LocalDateTime localdate
                = LocalDateTime
                      .parse("2018-12-30T19:34:50.63");

            // getting HijrahDate for the
            // given TemporalAccessor object
            // by using localDateTime() method
            ChronoLocalDateTime<HijrahDate> date
                = crono.localDateTime(localdate);

            // display the result
            System.out.println("HijrahDate is: " + date);
        }
        catch (DateTimeException e) {
            System.out.println("passed parameter can"
                               + " not form a date");
            System.out.println("Exception thrown: " + e);
        }
    }
}
Comment