java.time.OffsetDateTime.with() Method Example



Description

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

Declaration

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

public OffsetDateTime 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 OffsetDateTime 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.OffsetDateTime.with(TemporalField field, long newValue) method.

package com.tutorialspoint;

import java.time.OffsetDateTime;
import java.time.temporal.ChronoField;

public class OffsetDateTimeDemo {
   public static void main(String[] args) {
      
      OffsetDateTime date = OffsetDateTime.parse("2017-01-03T10:15:30+01:00");
      OffsetDateTime result = date.with(ChronoField.DAY_OF_MONTH,13);
      System.out.println(result);  
   }
}

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

2017-07-31T10:15:30+01:00
Advertisements