java.time.OffsetDateTime.truncatedTo() Method Example



Description

The java.time.OffsetDateTime.truncatedTo(TemporalUnit unit) method returns a copy of this OffsetDateTime with the time truncated.

Declaration

Following is the declaration for java.time.OffsetDateTime.truncatedTo(TemporalUnit unit) method.

public OffsetDateTime truncatedTo(TemporalUnit unit)

Parameters

unit − the unit to truncate to, not null.

Return Value

a OffsetDateTime based on this date-time with the time truncated, not null.

Exceptions

  • DateTimeException − if unable to truncate.

  • UnsupportedTemporalTypeException − if the unit is not supported.

Example

The following example shows the usage of java.time.OffsetDateTime.truncatedTo(TemporalUnit unit) method.

package com.tutorialspoint;

import java.time.OffsetDateTime;
import java.time.temporal.ChronoUnit;

public class OffsetDateTimeDemo {
   public static void main(String[] args) {
 
      OffsetDateTime date = OffsetDateTime.now();
      System.out.println(date.truncatedTo(ChronoUnit.DAYS));  
   }
}

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

2017-03-21T00:00+05:30
Advertisements