Open In App

HijrahDate of(int, int, int) method in Java with Example

Improve
Improve
Like Article
Like
Save
Share
Report

The of() method of java.time.chrono.HijrahDate class is used to generate the date according to Islamic hijri calendar system by using the passed proleptic year, month and date.

Syntax:

public static HijrahDate of(int Year,
            int month, int dayOfMonth)

Parameter: This method takes the following argument as a parameter:

  • year: which is the integer value of year which represent the year field in hijrah date.
  • month: which is the integer value of month which represent the month field in hijrah date.
  • day: which is the integer value of day which represent the day field in hijrah date.

Return Value: This method returns the date according to Islamic Hijri calendar system by using the passed proleptic year, month and date.

Exception: This method throws DateTimeException if the passed parameter is unable to form date.

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

Example 1:

Java




// Java program to demonstrate of() method
  
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
import java.time.temporal.*;
  
public class GFG {
    public static void main(String[] argv)
    {
        try {
  
            // Creating and initializing
            // HijrahDate Object
            // By using of() method
            HijrahDate hidate
                = HijrahDate.of(1444, 04, 24);
  
            // Display the result
            System.out.println("HijrahDate: "
                               + hidate);
        }
        catch (DateTimeException e) {
            System.out.println("passed parameter can"
                               + " not form a date");
            System.out.println("Exception thrown: "
                               + e);
        }
    }
}


Output:

HijrahDate: Hijrah-umalqura AH 1444-04-24

Example 2:

Java




// Java program to demonstrate of() method
  
import java.util.*;
import java.io.*;
import java.time.*;
import java.time.chrono.*;
import java.time.temporal.*;
  
public class GFG {
    public static void main(String[] argv)
    {
        try {
  
            // Creating and initializing
            // HijrahDate Object
            // By using of() method
            HijrahDate hidate
                = HijrahDate.of(2014, 04, 24);
  
            // Display the result
            System.out.println("HijrahDate: "
                               + hidate);
        }
        catch (DateTimeException e) {
            System.out.println("passed parameter can"
                               + " not form a date");
            System.out.println("Exception thrown: "
                               + e);
        }
    }
}


Output:

passed parameter can not form a date
Exception thrown: java.time.DateTimeException:
                  Invalid Hijrah date,
                  year: 2014, month: 4

Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/HijrahDate.html#of-int-int-int-



Last Updated : 27 Feb, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads