java.time.ZoneOffset.equals() Method Example



Description

The java.time.ZoneOffset.equals(Object obj) method checks if this offset is equal to another offset..

Declaration

Following is the declaration for java.time.ZoneOffset.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.ZoneOffset.equals(Object obj) method.

package com.tutorialspoint;

import java.time.ZoneOffset;

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

      ZoneOffset zone1 = ZoneOffset.of("Z");
      System.out.println(zone1);  
      ZoneOffset zone2 = ZoneOffset.of("+02:00");
      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
+02:00
false
Advertisements