java.time.Duration.getSeconds() Method Example



Description

The java.time.Duration.getSeconds() method gets the number of seconds in this duration.

Declaration

Following is the declaration for java.time.Duration.getSeconds() method.

public long getSeconds()

Return Value

the whole seconds part of the length of the duration, positive or negative.

Example

The following example shows the usage of java.time.Duration.getSeconds() method.

package com.tutorialspoint;

import java.time.Duration;
import java.time.LocalTime;

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

      Duration duration = Duration.between(LocalTime.NOON,LocalTime.MAX);  
      System.out.println(duration.getSeconds());
   }
}

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

43199
Advertisements