java.time.Instant.with() Method Example



Description

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

Declaration

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

public Instant with(TemporalAdjuster adjuster)

Parameters

adjuster − the adjuster to use, not null.

Return Value

an Instant 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.Instant.with(TemporalAdjuster adjuster) method.

package com.tutorialspoint;

import java.time.Instant;

public class InstantDemo {
   public static void main(String[] args) {

      Instant instant = Instant.parse("2017-12-03T10:15:30.00Z");
      Instant instant1 = Instant.now();
      Instant result = instant.with(instant1);
      System.out.println(result);
   }
}

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

2017-03-15T11:06:19.656Z
Advertisements