org.jboss.seam.solder.util.collections
Class Objects
java.lang.Object
org.jboss.seam.solder.util.collections.Objects
public class Objects
- extends Object
|
Method Summary |
static boolean |
equal(Object a,
Object b)
Determines whether two possibly-null objects are equal. |
| Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
equal
public static boolean equal(Object a,
Object b)
- Determines whether two possibly-null objects are equal. Returns:
true if a and b are both null.
true if a and b are both non-null and they are
equal according to Object.equals(Object).
false in all other situations.
This assumes that any non-null objects passed to this function conform to
the equals() contract.
Copyright © 2008-2011 Seam Framework. All Rights Reserved.