java.time.LocalTime.until() Method Example



Description

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

Declaration

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

public LocalTime with(TemporalAdjuster adjuster)

Parameters

adjuster − the adjuster to use, not null.

Return Value

a LocalTime 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.LocalTime.with(TemporalAdjuster adjuster) method.

package com.tutorialspoint;

import java.time.LocalTime;

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

      LocalTime date = LocalTime.parse("10:15:30");
      LocalTime 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
Advertisements