| java.lang.Object fri.util.Equals
Equals | abstract public class Equals (Code) | | Object utility. Equality and hash code for objects that may be null.
author: Ritzberger Fritz |
Method Summary | |
public static boolean | equals(Object o1, Object o2) Returns false if objects are not equal or one of them is null and the other not. | public static int | hashCode(Object o) Returns zero for a null object, else the objects hash code. |
equals | public static boolean equals(Object o1, Object o2)(Code) | | Returns false if objects are not equal or one of them is null and the other not.
|
hashCode | public static int hashCode(Object o)(Code) | | Returns zero for a null object, else the objects hash code.
|
|
|