Java org.apache.commons.lang3 AnnotationUtils fields, constructors, methods, implement or subclass

Example usage for Java org.apache.commons.lang3 AnnotationUtils fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.apache.commons.lang3 AnnotationUtils.

The text is from its open source code.

Subclass

org.apache.commons.lang3.AnnotationUtils has subclasses.
Click this link to see all its subclasses.

Method

booleanequals(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.

inthashCode(final Annotation a)

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

booleanisValidAnnotationMemberType(Class type)

Checks if the specified type is permitted as an annotation member.

The Java language specification only permits certain types to be used in annotations.

StringtoString(final Annotation a)

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