java.time.Duration.isZero() Method Example



Description

The java.time.Duration.isZero() method checks if this duration is zero length.

Declaration

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

public boolean isZero()

Return Value

true if this duration has a total length equal to zero.

Example

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

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

false
Advertisements