java.time.OffsetTime.with() Method Example



Description

The java.time.OffsetTime.with(TemporalAdjuster adjuster) method returns an adjusted copy of this time.

Declaration

Following is the declaration for java.time.OffsetTime.with(TemporalAdjuster adjuster) method.

public OffsetTime with(TemporalAdjuster adjuster)

Parameters

adjuster − the adjuster to use, not null.

Return Value

a OffsetTime based on this with the adjustment made, not null.

Exceptions

  • DateTimeException − if the adjustment cannot be made.

  • ArithmeticException − if numeric overflow occurs.

Example

The following example shows the usage of java.time.OffsetTime.with(TemporalAdjuster adjuster) method.

package com.tutorialspoint;

import java.time.LocalTime;
import java.time.OffsetTime;

public class OffsetTimeDemo {
   public static void main(String[] args) {
      
      OffsetTime date = OffsetTime.parse("10:15:30+01:00");
      OffsetTime result = date.with(LocalTime.NOON);
      System.out.println(result);  
   }
}

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

12:00+01:00
Advertisements