until() method of the OffsetDateTime class used to calculate the amount of time between two OffsetDateTime objects using TemporalUnit. The start and end points are this and the specified OffsetDateTime 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 OffsetDateTime. 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 an OffsetDateTime and unit which is the unit to measure the amount.
Return value: This method returns the amount of time between this OffsetDateTime and the end OffsetDateTime.
Exception:This method throws following Exceptions:
- DateTimeException – if the amount cannot be calculated, or the ending temporal cannot be converted to an OffsetDateTime.
- UnsupportedTemporalTypeException – if the unit is not supported.
- ArithmeticException – if numeric overflow occurs.
Below programs illustrate the until() method:
Program 1:
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
OffsetDateTime date1 = OffsetDateTime.parse( "2018-12-12T13:30:30+05:00" );
OffsetDateTime date2 = OffsetDateTime.parse( "2015-12-12T13:30:30+05:00" );
long result
= date2.until(date1,
ChronoUnit.MONTHS);
System.out.println( "Result in MONTHS: "
+ result);
}
}
|
Output:
Result in MONTHS: 36
Program 2:
import java.time.*;
import java.time.temporal.*;
public class GFG {
public static void main(String[] args)
{
OffsetDateTime date1 = OffsetDateTime.parse( "2018-12-12T13:30:30+05:00" );
OffsetDateTime date2 = OffsetDateTime.parse( "2015-12-12T13:30:30+05:00" );
long result
= date1.until(date2,
ChronoUnit.YEARS);
System.out.println( "Result in YEARS: "
+ result);
}
}
|
Output:
Result in YEARS: -3
References:
https://docs.oracle.com/javase/10/docs/api/java/time/OffsetDateTime.html#until(java.time.temporal.Temporal, java.time.temporal.TemporalUnit)
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
22 Jan, 2019
Like Article
Save Article