com.livis.flabes.util
Class ObjectUtils

java.lang.Object
  |
  +--com.livis.flabes.util.ObjectUtils

public class ObjectUtils
extends java.lang.Object


Method Summary
static boolean equal(java.lang.Object lhs, java.lang.Object rhs)
          Checks whether to objects are "equal".
static java.lang.Object fromSerialized(byte[] ser)
           
static byte[] toSerialized(java.lang.Object o)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Method Detail

equal

public static boolean equal(java.lang.Object lhs,
                            java.lang.Object rhs)
Checks whether to objects are "equal". Like equals, with null references gracefully handled (ie, considered "equal").
Parameters:
lhs - left hand side object of check
rhs - right hand side object of check
See Also:
Object.equals(Object)

toSerialized

public static byte[] toSerialized(java.lang.Object o)

fromSerialized

public static java.lang.Object fromSerialized(byte[] ser)