java.time.ZoneId.equals() Method Example



Description

The java.time.ZoneId.equals(Object obj) method checks if this time-zone ID is equal to another time-zone ID.

Declaration

Following is the declaration for java.time.ZoneId.equals(Object obj) method.

public boolean equals(Object obj)

Parameters

obj − the object to check, null returns false.

Return Value

rue if this is equal to the other time-zone ID

Example

The following example shows the usage of java.time.ZoneId.equals(Object obj) method.

package com.tutorialspoint;

import java.time.ZoneId;

public class ZoneIdDemo {
   public static void main(String[] args) {

      ZoneId zone1 = ZoneId.of("Z");
      System.out.println(zone1);  
      ZoneId zone2 = ZoneId.of("Asia/Calcutta");
      System.out.println(zone2);  
      System.out.println(zone1.equals(zone2));  
   }
}

Let us compile and run the above program, this will produce the following result −

Z
Asia/Calcutta
false
Advertisements