Example usage for org.apache.commons.lang3 AnnotationUtils hashCode

List of usage examples for org.apache.commons.lang3 AnnotationUtils hashCode

Introduction

In this page you can find the example usage for org.apache.commons.lang3 AnnotationUtils hashCode.

Prototype

public static int hashCode(final Annotation a) 

Source Link

Document

Generate a hash code for the given annotation using the algorithm presented in the Annotation#hashCode() API docs.

Usage

From source file:org.grouplens.grapht.annotation.AnnotationProxy.java

private int proxyHashCode(Object proxy) {
    return AnnotationUtils.hashCode((Annotation) proxy);
}