java.time.OffsetTime.with() Method Example



Description

The java.time.OffsetTime.with(TemporalField field, long newValue) method returns a copy of this time with the specified field set to a new value.

Declaration

Following is the declaration for java.time.OffsetTime.with(TemporalField field, long newValue) method.

public OffsetTime with(TemporalField field, long newValue)

Parameters

  • field − the field to set in the result, not null.

  • newValue − the new value of the field in the result.

Return Value

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

Exceptions

  • DateTimeException − if the adjustment cannot be made.

  • UnsupportedTemporalTypeException − if the field is not supported.

  • ArithmeticException − if numeric overflow occurs.

Example

The following example shows the usage of java.time.OffsetTime.with(TemporalField field, long newValue) method.

package com.tutorialspoint;

import java.time.OffsetTime;
import java.time.temporal.ChronoField;

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

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

13:15:30+01:00
Advertisements