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

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

Introduction

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

Prototype

public static boolean equals(final Annotation a1, final Annotation a2) 

Source Link

Document

Checks if two annotations are equal using the criteria for equality presented in the Annotation#equals(Object) API docs.

Usage

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

private boolean proxyEquals(Object o1, Object o2) {
    return AnnotationUtils.equals((Annotation) o1, (Annotation) o2);
}