java.time.LocalDate.atStartOfDay() Method Example



Description

The java.time.LocalDate.atStartOfDay() method combines this date with the time of midnight to create a LocalDateTime at the start of this date.

Declaration

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

public LocalDateTime atStartOfDay()

Return Value

the local date-time of midnight at the start of this date, not null.

Example

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

package com.tutorialspoint;

import java.time.LocalDate;
import java.time.LocalDateTime;

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

      LocalDate date = LocalDate.parse("2017-02-03");
      System.out.println(date);  
      LocalDateTime date1 = date.atStartOfDay();
      System.out.println(date1);  
   }
}

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

2017-02-03
2017-02-03T00:00
Advertisements