java.time.Duration.getUnits() Method Example



Description

The java.time.Duration.getUnits() method gets the set of units supported by this duration.

Declaration

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

public List<TemporalUnit> getUnits()

Return Value

a list containing the seconds and nanos units, not null.

Example

The following example shows the usage of java.time.Duration.getUnits() 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.getUnits());
   }
}

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

[Seconds, Nanos]
Advertisements