java.time.LocalDate.atTime() Method Example



Description

The java.time.LocalDate.atTime(OffsetTime time) method combines this date with an offset time to create an OffsetDateTime.

Declaration

Following is the declaration for java.time.LocalDate.atTime(OffsetTime time) method.

public OffsetDateTime atTime(OffsetTime time)

Parameters

time − the time to combine with, not null.

Return Value

the offset date-time formed from this date and the specified time, not null.

Example

The following example shows the usage of java.time.LocalDate.atTime(OffsetTime time) method.

package com.tutorialspoint;

import java.time.LocalDate;
import java.time.OffsetDateTime;
import java.time.OffsetTime;

public class LocalDateDemo {
   public static void main(String[] args) {

      LocalDate date = LocalDate.parse("2017-02-03");
      System.out.println(date);  
      OffsetTime time = OffsetTime.now();
      OffsetDateTime date1 = date.atTime(time);
      System.out.println(date1);  
   }
}

Let us compile and run the above program, this will produce the following result −

2017-02-03
2017-02-03T11:47:42.530+05:30
Advertisements