until() method of the LocalDateTime class used to calculate the amount of time between two LocalDateTime objects using TemporalUnit. The start and end points are this and the specified LocalDateTime 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 LocalDateTime. 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 LocalDateTime and unit which is the unit to measure the amount.
Return value: This method returns the amount of time between this LocalDateTime and the end LocalDateTime.
Exception:This method throws following Exceptions:
- DateTimeException – if the amount cannot be calculated, or the ending temporal cannot be converted to a LocalDateTime.
- UnsupportedTemporalTypeException – if the unit is not supported.
- ArithmeticException – if numeric overflow occurs.
Below programs illustrate the until() method:
Program 1:
Java
// Java program to demonstrate // LocalDateTime.until() method import java.time.*; import java.time.temporal.*; public class GFG { public static void main(String[] args) { // create LocalDateTime objects LocalDateTime l1 = LocalDateTime.parse( "2018-12-06T19:21:12" ); LocalDateTime l2 = LocalDateTime.parse( "2018-10-25T23:12:31.123" ); // apply until method of LocalDateTime class long result = l2.until(l1, ChronoUnit.MINUTES); // print results System.out.println( "Result in MINUTES: " + result); } } |
Result in MINUTES: 60248
Program 2:
Java
// Java program to demonstrate // LocalDateTime.until() method import java.time.*; import java.time.temporal.*; public class GFG { public static void main(String[] args) { // create LocalDateTime objects LocalDateTime l1 = LocalDateTime.parse( "2018-12-06T19:21:12" ); LocalDateTime l2 = LocalDateTime.parse( "2018-10-25T23:12:31.123" ); // apply until method of LocalDateTime class long result = l2.until(l1, ChronoUnit.MONTHS); // print results System.out.println( "Result in MONTHS: " + result); } } |
Result in MONTHS: 1
Example 3:
Java
import java.io.*; import java.time.LocalDateTime; import java.time.temporal.ChronoUnit; public class GFG { public static void main(String[] args) { LocalDateTime dateTime1 = LocalDateTime.of( 2022 , 12 , 1 , 0 , 0 ); LocalDateTime dateTime2 = LocalDateTime.of( 2022 , 11 , 10 , 0 , 0 ); long days = dateTime1.until(dateTime2, ChronoUnit.DAYS); System.out.println( "Number of days between " + dateTime1 + " and " + dateTime2 + ": " + days); } } |
Number of days between 2022-12-01T00:00 and 2022-11-10T00:00: -21