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

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

Introduction

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

Prototype

public static String toString(final Annotation a) 

Source Link

Document

Generate a string representation of an Annotation, as suggested by Annotation#toString() .

Usage

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

private String proxyToString(Object o) {
    return AnnotationUtils.toString((Annotation) o);
}