List of usage examples for org.apache.commons.lang3 AnnotationUtils equals
public static boolean equals(final Annotation a1, final Annotation a2)
Checks if two annotations are equal using the criteria for equality presented in the Annotation#equals(Object) API docs.
From source file:org.grouplens.grapht.annotation.AnnotationProxy.java
private boolean proxyEquals(Object o1, Object o2) { return AnnotationUtils.equals((Annotation) o1, (Annotation) o2); }