Friday, February 6, 2026
HomeLanguagesJavaThaiBuddhistDate of() method in Java with Example

ThaiBuddhistDate of() method in Java with Example

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

Syntax:

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

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

  • year: The integer value of year which represent the year field in ThaiBuddhist date.
  • month: The integer value of month which represent the month field in ThaiBuddhist date.
  • day: The integer value of day which represent the day field in ThaiBuddhist date.

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


Output:

ThaiBuddhistDate: ThaiBuddhist BE 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
            // ThaiBuddhistDate Object
            // By using of() method
            ThaiBuddhistDate hidate
                = ThaiBuddhistDate.of(1911, 04, -24);
  
            // Display the result
            System.out.println(
                "ThaiBuddhistDate: "
                + 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/ThaiBuddhistDate.html#of-int-int-int-

RELATED ARTICLES

2 COMMENTS

Most Popular

Dominic
32489 POSTS0 COMMENTS
Milvus
126 POSTS0 COMMENTS
Nango Kala
6861 POSTS0 COMMENTS
Nicole Veronica
11983 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12073 POSTS0 COMMENTS
Shaida Kate Naidoo
6995 POSTS0 COMMENTS
Ted Musemwa
7235 POSTS0 COMMENTS
Thapelo Manthata
6946 POSTS0 COMMENTS
Umr Jansen
6929 POSTS0 COMMENTS