Tuesday, December 23, 2025
HomeLanguagesJavaChronoLocalDate until(Temporal,TemporalUnit) Method in Java with Examples

ChronoLocalDate until(Temporal,TemporalUnit) Method in Java with Examples

until() method of the ChronoLocalDate interface used to calculate the amount of time between two ChronoLocalDate objects using TemporalUnit. The start and end points are this and the specified ChronoLocalDate passed as a parameter. The result will be negative if the end is before the start. The calculation returns a whole number, representing the number of complete units between the two ChronoLocalDate. This instance is immutable and unaffected by this method call.

Syntax:

public long until(Temporal endExclusive, TemporalUnit unit)

Parameters: This method accepts two parameters endExclusive which is the end date, exclusive, which is converted to a ChronoLocalDate and unit which is the unit to measure the amount.

Return value: This method returns the amount of time between this ChronoLocalDate and the end ChronoLocalDate.

Exception:This method throws following Exceptions:

  • DateTimeException – if the amount cannot be calculated, or the ending temporal cannot be converted to a ChronoLocalDate.
  • UnsupportedTemporalTypeException – if the unit is not supported.
  • ArithmeticException – if numeric overflow occurs.

Below programs illustrate the until() method:
Program 1:




// Java program to demonstrate
// ChronoLocalDate.until() method
  
import java.time.*;
import java.time.temporal.*;
import java.time.chrono.*;
  
public class GFG {
    public static void main(String[] args)
    {
        // create ChronoLocalDate objects
        ChronoLocalDate l1
            = LocalDate
                  .parse("2018-12-06");
  
        ChronoLocalDate l2
            = LocalDate
                  .parse("2018-10-25");
  
        // apply until the method of LocalDate class
        long result
            = l2.until(l1,
                       ChronoUnit.DAYS);
  
        // print results
        System.out.println("Result in DAYS: "
                           + result);
    }
}


Output:

Result in DAYS: 42

Program 2:




// Java program to demonstrate
// ChronoLocalDate.until() method
  
import java.time.*;
import java.time.temporal.*;
import java.time.chrono.*;
  
public class GFG {
    public static void main(String[] args)
    {
        // create ChronoLocalDate objects
        ChronoLocalDate l1
            = LocalDate
                  .parse("2018-12-06");
  
        ChronoLocalDate l2
            = LocalDate
                  .parse("2018-10-25");
  
        // apply until()
        long result
            = l2.until(l1,
                       ChronoUnit.MONTHS);
  
        // print results
        System.out.println("Result in MONTHS: "
                           + result);
    }
}


Output:

Result in MONTHS: 1

References:
https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoLocalDate.html#until-java.time.temporal.Temporal-java.time.temporal.TemporalUnit-

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

1 COMMENT

Most Popular

Dominic
32456 POSTS0 COMMENTS
Milvus
111 POSTS0 COMMENTS
Nango Kala
6825 POSTS0 COMMENTS
Nicole Veronica
11959 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12038 POSTS0 COMMENTS
Shaida Kate Naidoo
6958 POSTS0 COMMENTS
Ted Musemwa
7203 POSTS0 COMMENTS
Thapelo Manthata
6912 POSTS0 COMMENTS
Umr Jansen
6890 POSTS0 COMMENTS