Thursday, July 4, 2024
HomeLanguagesJavaChronoZonedDateTime equals() method in Java with Examples

ChronoZonedDateTime equals() method in Java with Examples

The equals() method of ChronoZonedDateTime interface in Java is used to compare this ChronoZonedDateTime to the another date-time object passed as parameter. The comparison is based on the offset date-time and the zone. Only objects of type ChronoZonedDateTime are compared with each other and other types return false. The value to be returned by this method is determined as follows:

  • if both ChronoZonedDateTime are equal, then true is returned.
  • if both ChronoZonedDateTime are not equal, then false is returned.

Syntax:

boolean equals(Object obj)

Parameters: This method accepts a single parameter obj which represents the object to compare with this ChronoZonedDateTime. This is a mandatory parameter and it should not be null.

Return value: This method returns true if both ChronoZonedDateTime are equal else false.

Below programs illustrate the equals() method of ChronoZonedDateTime in Java:

Program 1:




// Program to illustrate the equals() method
  
import java.util.*;
import java.time.*;
import java.time.chrono.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // First date
        ChronoZonedDateTime dt
            = ZonedDateTime.parse(
                "2018-12-06T19:21:12.123+05:30[Asia/Calcutta]");
  
        System.out.println(dt);
  
        // Second date
        ChronoZonedDateTime dt1
            = ZonedDateTime.parse(
                "2018-12-06T19:21:12.123+05:30[Asia/Calcutta]");
  
        System.out.println(dt1);
  
        try {
            // Compare both dates
            System.out.println(dt1.equals(dt));
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}


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 equals() method
  
import java.util.*;
import java.time.*;
import java.time.chrono.*;
  
public class GfG {
    public static void main(String[] args)
    {
        // First date
        ChronoZonedDateTime dt
            = ZonedDateTime.parse(
                "2018-10-25T23:12:31.123+02:00[Europe/Paris]");
        System.out.println(dt);
  
        // Second date
        ChronoZonedDateTime dt1
            = ZonedDateTime.parse(
                "2018-12-06T19:21:12.123+05:30[Asia/Calcutta]");
        System.out.println(dt1);
  
        try {
  
            // Compare both dates
            System.out.println(dt1.equals(dt));
        }
        catch (Exception e) {
            System.out.println(e);
        }
    }
}


Output:

2018-10-25T23:12:31.123+02:00[Europe/Paris]
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#equals-java.lang.Object-

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