このような汎用オブジェクト比較メソッドを作成したい -
public static boolean objectsAreEqual(Object A, Object B)
{
// ensure objects belong to the same class
// compare object fields via reflection
// if all fields match, then return true else return false
}
これに対する既存の実装はありますか?