java.time.Duration.withSeconds() Method Example



Description

The java.time.Duration.withSeconds(int seconds) method returns a copy of this duration with the specified seconds.

Declaration

Following is the declaration for java.time.Duration.withSeconds(int seconds) method.

public Duration withSeconds(int seconds)

Parameters

seconds − the seconds to represent, may be negative.

Return Value

a Duration based on this period with the requested seconds, not null.

Example

The following example shows the usage of java.time.Duration.withSeconds(int seconds) method.

package com.tutorialspoint;

import java.time.Duration;

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

      Duration duration = Duration.ofDays(2);
      System.out.println(duration.toString());  
      duration = duration.withSeconds(2000);
      System.out.println(duration.toString());  
   }
}

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

PT48H
PT33M20S
Advertisements