java.time.OffsetTime.truncatedTo() Method Example



Description

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

Declaration

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

public OffsetTime truncatedTo(TemporalUnit unit)

Parameters

unit − the unit to truncate to, not null.

Return Value

a OffsetTime based on this 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.OffsetTime.truncatedTo(TemporalUnit unit) method.

package com.tutorialspoint;

import java.time.OffsetTime;
import java.time.temporal.ChronoUnit;

public class OffsetTimeDemo {
   public static void main(String[] args) {
 
      OffsetTime date = OffsetTime.now();
      System.out.println(date.truncatedTo(ChronoUnit.HOURS));  
   }
}

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

14:00
Advertisements