List of usage examples for org.apache.commons.lang3 AnnotationUtils hashCode
public static int hashCode(final Annotation a)
Generate a hash code for the given annotation using the algorithm presented in the Annotation#hashCode() API docs.
From source file:org.grouplens.grapht.annotation.AnnotationProxy.java
private int proxyHashCode(Object proxy) { return AnnotationUtils.hashCode((Annotation) proxy); }