LocalDate until(Temporal,TemporalUnit) Method in Java with Examples
until() method of the LocalDate class used to calculate the amount of time between two LocalDate objects using TemporalUnit. The start and end points are this and the specified LocalDate 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 LocalDate. 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 LocalDate and unit which is the unit to measure the amount.
Return value: This method returns the amount of time between this LocalDate and the end LocalDate.
Exception:This method throws following Exceptions:
- DateTimeException – if the amount cannot be calculated, or the ending temporal cannot be converted to a LocalDate.
- UnsupportedTemporalTypeException – if the unit is not supported.
- ArithmeticException – if numeric overflow occurs.
Below programs illustrate the until() method:
Program 1:
// Java program to demonstrate // LocalDate.until() method import java.time.*; import java.time.temporal.*; public class GFG { public static void main(String[] args) { // create LocalDate objects LocalDate l1 = LocalDate .parse( "2018-12-06" ); LocalDate 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); } } |
Result in DAYS: 42
Program 2:
// Java program to demonstrate // LocalDate.until() method import java.time.*; import java.time.temporal.*; public class GFG { public static void main(String[] args) { // create LocalDate objects LocalDate l1 = LocalDate .parse( "2018-12-06" ); LocalDate l2 = LocalDate .parse( "2018-10-25" ); // apply until() long result = l2.until(l1, ChronoUnit.MONTHS); // print results System.out.println( "Result in MONTHS: " + result); } } |
Result in MONTHS: 1
Recommended Posts:
- LocalDate now() Method in Java with Examples
- LocalDate now() Method in Java with Examples
- LocalDate plus() method in Java with Examples
- LocalDate get() method in Java with Examples
- LocalDate with() Method in Java with Examples
- LocalDate minusDays() method in Java with Examples
- LocalDate until(ChronoLocalDate) Method in Java with Examples
- LocalDate getLong() method in Java with Examples
- LocalDate query() Method in Java with Examples
- LocalDate minusWeeks() method in Java with Examples
- LocalDate getDayOfYear() method in Java with Examples
- LocalDate getEra() method in Java with Examples
- LocalDate minusYears() method in Java with Examples
- LocalDate isSupported() method in Java with Examples
- LocalDate plusDays() Method in Java with Examples
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.