Java Date Time - Duration equals(Object otherDuration) example








Duration equals(Object otherDuration) checks if this duration is equal to the specified Duration. The comparison is based on the total length of the durations.

Syntax

equals has the following syntax.

public boolean equals(Object otherDuration)

Example

The following example shows how to use equals.

import java.time.Duration;
import java.time.LocalTime;
//from  w ww  .  j a v  a  2s . com
public class Main {
  public static void main(String[] args) {
    Duration duration = Duration.between(LocalTime.MIDNIGHT,LocalTime.NOON);
    System.out.println(duration.getSeconds());
    
    System.out.println(Duration.ofSeconds(2340).equals(duration));    
  }
}

The code above generates the following result.