Thursday, September 4, 2025
HomeLanguagesJavaChronoUnit isDurationEstimated() method in Java with Examples

ChronoUnit isDurationEstimated() method in Java with Examples

The isDurationEstimated() method of ChronoUnit enum is used to check if the duration of the ChronoUnit is an estimate. All the time units in this ChronoUnit are considered to be accurate, while all date units in this ChronoUnit are considered to be estimated.

Syntax:

public boolean isDurationEstimated()

Parameters: This method accepts nothing.

Return value: This method returns true if the duration is estimated, false if accurate.

Below programs illustrate the ChronoUnit.isDurationEstimated() method:
Program 1:




// Java program to demonstrate
// ChronoUnit.isDurationEstimated() method
  
import java.time.temporal.ChronoUnit;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // get ChronoUnit
        ChronoUnit chronoUnit
            = ChronoUnit.valueOf("NANOS");
  
        // apply isDurationEstimated()
        boolean isDurationEstimatedAttribute
            = chronoUnit.isDurationEstimated();
  
        // print
        System.out.println(
            "NANOS"
            + " is Duration Estimated attribute:"
            + isDurationEstimatedAttribute);
    }
}


Output:

NANOS is Duration Estimated attribute:false

Program 2:




// Java program to demonstrate
// ChronoUnit.isDurationEstimated() method
  
import java.time.temporal.ChronoUnit;
  
public class GFG {
    public static void main(String[] args)
    {
  
        // get ChronoUnit
        ChronoUnit chronoUnit
            = ChronoUnit.valueOf("DAYS");
  
        // apply isDurationEstimated()
        boolean isDurationEstimatedAttribute
            = chronoUnit.isDurationEstimated();
  
        // print
        System.out.println(
            "DAYS"
            + " is Duration Estimated attribute:"
            + isDurationEstimatedAttribute);
    }
}


Output:

DAYS is Duration Estimated attribute:true

References: https://docs.oracle.com/javase/10/docs/api/java/time/temporal/ChronoUnit.html#isDurationEstimated()

RELATED ARTICLES

Most Popular

Dominic
32260 POSTS0 COMMENTS
Milvus
81 POSTS0 COMMENTS
Nango Kala
6625 POSTS0 COMMENTS
Nicole Veronica
11795 POSTS0 COMMENTS
Nokonwaba Nkukhwana
11855 POSTS0 COMMENTS
Shaida Kate Naidoo
6747 POSTS0 COMMENTS
Ted Musemwa
7023 POSTS0 COMMENTS
Thapelo Manthata
6694 POSTS0 COMMENTS
Umr Jansen
6714 POSTS0 COMMENTS