Friday, September 5, 2025
HomeLanguagesJavaDuration equals(Duration) method in Java with Examples

Duration equals(Duration) method in Java with Examples

The equals(Duration) method of Duration Class in java.time package is used to check whether this duration is equal to the duration passed as the parameter.

Syntax:

public boolean equals(Duration otherDuration)

Parameters: This method accepts a parameter otherDuration which is the duration to which this duration will be compared to.

Return Value: This method returns a boolean value showing whether this Duration is equal to the otherDuration or not.

Below examples illustrate the Duration.equals() method:

Example 1:




// Java code to illustrate equals() method
  
import java.time.Duration;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Duration using parse() method
        Duration duration1
            = Duration.parse("P2DT3H4M");
  
        // Duration using ofDays() method
        Duration duration2
            = Duration.ofDays(10);
  
        // Compare the durations
        // using equals() method
        System.out.println(duration1
                               .equals(duration2));
    }
}


Output:

false

Example 2:




// Java code to illustrate equals() method
  
import java.time.Duration;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Duration using ofHours() method
        Duration duration1
            = Duration.ofHours(5);
  
        // Duration using ofHours() method
        Duration duration2
            = Duration.ofHours(5);
  
        // Compare the durations
        // using equals() method
        System.out.println(duration1
                               .equals(duration2));
    }
}


Output:

true

Example 3:




// Java code to illustrate equals() method
  
import java.time.Duration;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // Duration using ofDays() method
        Duration duration1
            = Duration.ofDays(5);
  
        // Duration using ofHours() method
        Duration duration2
            = Duration.ofHours(5);
  
        // Compare the durations
        // using equals() method
        System.out.println(duration1
                               .equals(duration2));
    }
}


Output:

false

Reference: Oracle Doc

RELATED ARTICLES

Most Popular

Dominic
32264 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6634 POSTS0 COMMENTS
Nicole Veronica
11801 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11863 POSTS0 COMMENTS
Shaida Kate Naidoo
6750 POSTS0 COMMENTS
Ted Musemwa
7025 POSTS0 COMMENTS
Thapelo Manthata
6701 POSTS0 COMMENTS
Umr Jansen
6718 POSTS0 COMMENTS