ChronoLocalDate isEqual() method in Java with Examples Last Updated : 29 Apr, 2019 Summarize Comments Improve Suggest changes Share Like Article Like Report The isEqual() method of ChronoLocalDate interface in Java checks if this date is equal to the specified date or not. Syntax: public boolean isEqual(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 equal to the specified date. Below programs illustrate the isEqual() method of ChronoLocalDate in Java: Program 1: Java // Program to illustrate the isEqual() method import java.util.*; import java.time.*; import java.time.chrono.*; public class GfG { public static void main(String[] args) { // Parses the first date ChronoLocalDate dt1 = LocalDate.parse("2018-11-27"); // Parses the second date ChronoLocalDate dt2 = LocalDate.parse("2018-11-27"); // Check if these two are equal System.out.println(dt1.isEqual(dt2)); } } Output: true Program 2: Java // Program to illustrate the isEqual() method import java.util.*; import java.time.*; import java.time.chrono.*; public class GfG { public static void main(String[] args) { // Parses the first date ChronoLocalDate dt1 = LocalDate.parse("2018-11-27"); // Parses the second date ChronoLocalDate dt2 = LocalDate.parse("2015-11-27"); // Check if these two are equal System.out.println(dt1.isEqual(dt2)); } } Output: false Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoLocalDate.html#isEqual-java.time.chrono.ChronoLocalDate- Comment More infoAdvertise with us Next Article ChronoLocalDate isEqual() method in Java with Examples K Kirti_Mangal Follow Improve Article Tags : Java Java-Functions Java-time package Java-ChronoLocalDate Practice Tags : Java Similar Reads ChronoLocalDateTime isEqual() method in Java with Examples The isEqual() method of ChronoLocalDateTime interface in Java is used to check if the date, passed as the parameter, is equal to this ChronoLocalDateTime instance or not. It returns a boolean value showing the same. Syntax: public boolean isEqual(ChronoLocalDateTime otherDate) Parameter: This method 2 min read ChronoLocalDate isAfter() method in Java with Examples The isAfter() method of ChronoLocalDate interface in Java checks if this date is after the specified date and returns a boolean value stating the same. Syntax: public boolean isAfter(ChronoLocalDate date2) Parameter: This method accept a single mandatory parameter date2 the other date to compare to 1 min read ChronoLocalDate isLeapYear() method in Java with Examples The isLeapYear() method of ChronoLocalDate interface in Java checks if the year is leap year or not. Syntax: public boolean isLeapYear() Parameter: This method does not accept parameters. Return Value: The function returns true if the year is leap, false otherwise. Below programs illustrate the isLe 1 min read ChronoLocalDate isBefore() method in Java with Examples The isBefore() method of ChronoLocalDate interface in Java checks if this date is before the specified date and returns a boolean value stating the same. Syntax: public boolean isAfter(ChronoLocalDate date2) Parameter: This method accept a single mandatory parameter date2 the other date to compare t 1 min read ChronoZonedDateTime isEqual() method in Java with Examples The isEqual() method of ChronoZonedDateTime interface in Java is used to check if the date, passed as the parameter, is equal to this ChronoZonedDateTime instance or not. It returns a boolean value showing the same. Syntax: default boolean isEqual(ChronoZonedDateTime otherDate) Parameter: This metho 2 min read Like