Open In App

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

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

Syntax:



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

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

Return Value: This method returns the date according to Minguo 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 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
            // MinguoDate Object
            // By using of() method
            MinguoDate hidate
                = MinguoDate.of(1444, 04, 24);
  
            // Display the result
            System.out.println("MinguoDate: "
                               + hidate);
        }
        catch (DateTimeException e) {
            System.out.println("passed parameter can"
                               + " not form a date");
            System.out.println("Exception thrown: "
                               + e);
        }
    }
}

Output:
MinguoDate: Minguo ROC 1444-04-24

Example 2:




// 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
            // MinguoDate Object
            // By using of() method
            MinguoDate hidate
                = MinguoDate.of(1911, 04, -24);
  
            // Display the result
            System.out.println("MinguoDate: "
                               + 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 value for DayOfMonth (valid values 1 - 28/31): -24

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


Article Tags :