ZoneOffset equal(Object) method in Java with Examples Last Updated : 30 May, 2022 Comments Improve Suggest changes Like Article Like Report The equals(Object) method of ZoneOffset Class in java.time package is used to check whether the another instance of ZoneOffset passed as the parameter to this ZoneOffset instance, is equal or not. This method returns a boolean value stating the same. Syntax: public boolean equals(Object object) Parameters: This method accepts a parameter object which is to be is equal to this ZoneOffset instance. Return Value: This method returns a boolean value stating whether this ZoneOffset is equal to the instance passed as the parameter. Below examples illustrate the ZoneOffset.equals() method: Example 1: Java // Java code to illustrate equals() method import java.time.*; public class GFG { public static void main(String[] args) { // Get the ZoneOffset instance ZoneOffset zoneOffset1 = ZoneOffset.ofHours(5); System.out.println("ZoneOffset 1: " + zoneOffset1); // Get the ZoneOffset instance ZoneOffset zoneOffset2 = ZoneOffset.ofHours(5); System.out.println("ZoneOffset 2: " + zoneOffset2); // Using equals() method System.out.println("ZoneOffset 1 " + "is equal to ZoneOffset 2: " + zoneOffset1.equals(zoneOffset2)); } } Output:ZoneOffset 1: +05:00 ZoneOffset 2: +05:00 ZoneOffset 1 is equal to ZoneOffset 2: true Example 2: Java // Java code to illustrate equals() method import java.time.*; public class GFG { public static void main(String[] args) { // Get the ZoneOffset instance ZoneOffset zoneOffset1 = ZoneOffset.ofHours(5); System.out.println("ZoneOffset 1: " + zoneOffset1); // Get the ZoneOffset instance ZoneOffset zoneOffset3 = ZoneOffset.ofHours(3); System.out.println("ZoneOffset 3: " + zoneOffset3); // Using equals() method System.out.println("ZoneOffset 1 " + "is equal to ZoneOffset 3: " + zoneOffset1.equals(zoneOffset3)); } } Output:ZoneOffset 1: +05:00 ZoneOffset 3: +03:00 ZoneOffset 1 is equal to ZoneOffset 3: false Reference: Oracle Doc Comment More infoAdvertise with us Next Article Short equals() method in Java with Examples C code_r Follow Improve Article Tags : Java Java-Functions Java-time package Java-ZoneOffset Practice Tags : Java Similar Reads ZoneId equals() method in Java with Examples equals() method of the ZoneId class used to compare this ZoneId to the ZoneId object passed as parameter. The value to be returned by this method is determined as follows: if both ZoneId are equal, then true is returned if both ZoneId are not equal, then false is returned. Syntax: public boolean equ 2 min read ZoneOffsetTransition equals() method in Java with Example The equals() method of java.time.zone.ZoneOffsetTransition class is used to make comparison between two objects of ZoneOffsetTransition type . Syntax: public boolean equals(Object other) Parameter: this method takes the object of other zoneoffsetTransition as a parameter. Return Value: This method r 2 min read Short equals() method in Java with Examples The equals() method of Short class is a built in method in Java which is used to compare the equality given Object with the instance of Short invoking the equals() method. Syntax ShortObject.equals(Object a) Parameters: It takes an Object type object a as input which is to be compared with the insta 2 min read Short equals() method in Java with Examples The equals() method of Short class is a built in method in Java which is used to compare the equality given Object with the instance of Short invoking the equals() method. Syntax ShortObject.equals(Object a) Parameters: It takes an Object type object a as input which is to be compared with the insta 2 min read Short equals() method in Java with Examples The equals() method of Short class is a built in method in Java which is used to compare the equality given Object with the instance of Short invoking the equals() method. Syntax ShortObject.equals(Object a) Parameters: It takes an Object type object a as input which is to be compared with the insta 2 min read SortedSet equals() method in Java with Examples The equals() method of java.util.SortedSet class is used to verify the equality of an Object with a SortedSet and compare them. The method returns true if the size of both the SortedSets are equal and both contain the same elements. Syntax: public boolean equals(Object o) Parameters: This method tak 2 min read Like