in core/src/main/java/org/apache/commons/proxy2/ProxyUtils.java [155:159]
public static boolean isEqualsMethod(Method method)
{
return "equals".equals(method.getName()) && method.getParameterTypes().length == 1
&& Object.class.equals(method.getParameterTypes()[0]);
}