boolean equals(Object obj)
_INSERT_METHOD_SIGNATURE_HERE_
Description:
Indicates whether some other object is "equal to" this one. For any non-null reference values x and y, this method returns true if and only if x and y refer to the same object, i.e. x == y is true.
It is generally recommended to override the hashCode method whenever the equals method is overridden, to ensure that equal objects have equal hash codes.