Пример #1
0
 public static int reflectionCompare(Object obj, Object obj1, Collection collection) {
   return reflectionCompare(obj, obj1, ReflectionToStringBuilder.toNoNullStringArray(collection));
 }
Пример #2
0
 /**
  * This method uses reflection to determine if the two <code>Object</code>s are equal.
  *
  * <p>It uses <code>AccessibleObject.setAccessible</code> to gain access to private fields. This
  * means that it will throw a security exception if run under a security manager, if the
  * permissions are not set up correctly. It is also not as efficient as testing explicitly.
  *
  * <p>Transient members will be not be tested, as they are likely derived fields, and not part of
  * the value of the Object.
  *
  * <p>Static fields will not be tested. Superclass fields will be included.
  *
  * @param lhs <code>this</code> object
  * @param rhs the other object
  * @param excludeFields Collection of String field names to exclude from testing
  * @return <code>true</code> if the two Objects have tested equals.
  */
 public static boolean reflectionEquals(Object lhs, Object rhs, Collection<String> excludeFields) {
   return reflectionEquals(lhs, rhs, ReflectionToStringBuilder.toNoNullStringArray(excludeFields));
 }