Monday, January 13, 2025
Google search engine
HomeLanguagesJavaMinguoDate atTime() method in Java with Example

MinguoDate atTime() method in Java with Example

The atTime() method of java.time.chrono.MinguoDate class is used to add up this MinguoDate time with a local time for producing an equivalent date and time.

Syntax:

public final ChronoLocalDateTime
      atTime(LocalTime localTime)

Parameter: This method takes the object of type LocalTime as a parameter.

Return Value: This method returns the ChronoLocalDateTime by adding up this Minguo date with the passed local time.

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

Example 1:




// Java program to demonstrate
// atTime() 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
            // MinguoDate Object
            MinguoDate hidate
                = MinguoDate.now();
  
            // creating and initializing
            // TemporalAccessor object
            LocalTime localtime
                = LocalTime.now();
  
            // getting Chrono Local date time
            // by using atTime() method
            ChronoLocalDateTime<MinguoDate> date
                = hidate.atTime(localtime);
  
            // display the result
            System.out.println(
                "Chrono LocalDateTime is: "
                + date);
        }
        catch (DateTimeException e) {
            System.out.println(
                "passed parameter can"
                + " not form a date");
            System.out.println(
                "Exception thrown: " + e);
        }
    }
}


Output:

Chrono LocalDateTime is: Minguo ROC 109-04-20T14:28:17.085

Example 2:




// Java program to demonstrate
// atTime() 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
            // MinguoDate Object
            MinguoDate hidate
                = MinguoDate.now();
  
            // creating and initializing
            // TemporalAccessor object
            LocalTime localtime
                = LocalTime.of(8, 20);
  
            // getting Chrono Local date time
            // by using atTime() method
            ChronoLocalDateTime<MinguoDate> date
                = hidate.atTime(localtime);
  
            // display the result
            System.out.println(
                "Chrono LocalDateTime is: "
                + date);
        }
        catch (DateTimeException e) {
            System.out.println(
                "passed parameter can"
                + " not form a date");
            System.out.println(
                "Exception thrown: " + e);
        }
    }
}


Output:

Chrono LocalDateTime is: Minguo ROC 109-04-20T08:20

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

RELATED ARTICLES

Most Popular

Recent Comments