Duration equals(Object otherDuration) example
Description
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;
// w w w . j a v a 2 s .c o m
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.