LocalDate isBefore() method in Java with Examples
The isBefore() method of LocalDate class in Java checks if this date is before the specified date.
Syntax:
public boolean isAfter(ChronoLocalDate date2)
Parameter: This method accept a single mandatory parameter date2 the other date to compare to and not null.
Return Value: The function returns true if this date is before the specified date.
Below programs illustrate the isBefore() method of LocalDate in Java:
Program 1:
// Program to illustrate the isBefore() method import java.util.*; import java.time.*; public class GfG { public static void main(String[] args) { // Parses the first date LocalDate dt1 = LocalDate.parse( "2018-11-27" ); // Parses the second date LocalDate dt2 = LocalDate.parse( "2017-11-27" ); // Checks System.out.println(dt1.isBefore(dt2)); } } |
chevron_right
filter_none
Output:
false
Program 2:
// Program to illustrate the isBefore() method import java.util.*; import java.time.*; public class GfG { public static void main(String[] args) { // Parses the first date LocalDate dt1 = LocalDate.parse( "2018-11-27" ); // Parses the second date LocalDate dt2 = LocalDate.parse( "2019-11-27" ); // Checks System.out.println(dt1.isBefore(dt2)); } } |
chevron_right
filter_none
Output:
true
Recommended Posts:
- ChronoLocalDateTime isBefore() method in Java with Examples
- ChronoZonedDateTime isBefore() method in Java with Examples
- LocalDateTime isBefore() method in Java with Examples
- OffsetTime isBefore() method in Java with examples
- OffsetDateTime isBefore() method in Java with examples
- LocalTime isBefore() method in Java with Examples
- MonthDay isBefore() Method in Java with Examples
- Year isBefore() method in Java with Examples
- ChronoLocalDate isBefore() method in Java with Examples
- YearMonth isBefore() method in Java with Examples
- Instant isBefore() method in Java with Examples
- LocalDate get() method in Java with Examples
- LocalDate with() Method in Java with Examples
- LocalDate plus() method in Java with Examples
- LocalDate now() 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.