Friday, July 5, 2024
HomeLanguagesJavaChronoZonedDateTime isEqual() method in Java with Examples

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 method accepts a parameter otherDate which specifies the other date-time to be compared to this ChronoZonedDateTime. It should not be null.

Returns: The function returns boolean value showing if this date-time is equal to the specified date-time.

Below programs illustrate the ChronoZonedDateTime.isEqual() method:

Program 1:




// 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 date
        ChronoZonedDateTime dt1
            = ZonedDateTime.parse(
                "2018-12-06T19:21:12.123+05:30[Asia/Calcutta]");
  
        // Prints the date
        System.out.println(dt1);
  
        // Parses the date
        ChronoZonedDateTime dt2
            = ZonedDateTime.parse(
                "2018-12-06T19:21:12.123+05:30[Asia/Calcutta]");
  
        // Prints the date
        System.out.println(dt2);
  
        // Compares both dates
        System.out.println(dt1.isEqual(dt2));
    }
}


Output:

2018-12-06T19:21:12.123+05:30[Asia/Calcutta]
2018-12-06T19:21:12.123+05:30[Asia/Calcutta]
true

Program 2:




// 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 date
        ChronoZonedDateTime dt1
            = ZonedDateTime.parse(
                "2018-10-06T19:21:12.123+05:30[Asia/Calcutta]");
  
        // Prints the date
        System.out.println(dt1);
  
        // Parses the date
        ChronoZonedDateTime dt2
            = ZonedDateTime.parse(
                "2018-12-06T19:21:12.123+05:30[Asia/Calcutta]");
  
        // Prints the date
        System.out.println(dt2);
  
        // Compares both dates
        System.out.println(dt1.isEqual(dt2));
    }
}


Output:

2018-10-06T19:21:12.123+05:30[Asia/Calcutta]
2018-12-06T19:21:12.123+05:30[Asia/Calcutta]
false

Reference: https://docs.oracle.com/javase/9/docs/api/java/time/chrono/ChronoZonedDateTime.html#isEqual-java.time.chrono.ChronoZonedDateTime-

Nokonwaba Nkukhwana
Experience as a skilled Java developer and proven expertise in using tools and technical developments to drive improvements throughout a entire software development life cycle. I have extensive industry and full life cycle experience in a java based environment, along with exceptional analytical, design and problem solving capabilities combined with excellent communication skills and ability to work alongside teams to define and refine new functionality. Currently working in springboot projects(microservices). Considering the fact that change is good, I am always keen to new challenges and growth to sharpen my skills.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments