| Package | Description |
|---|---|
| org.springframework.core.type |
Core support package for type introspection.
|
| org.springframework.core.type.classreading |
Support classes for reading annotation and class-level metadata.
|
| Modifier and Type | Class and Description |
|---|---|
class |
StandardMethodMetadata
MethodMetadata implementation that uses standard reflection
to introspect a given Method. |
| Modifier and Type | Method and Description |
|---|---|
java.util.Set<MethodMetadata> |
StandardAnnotationMetadata.getAnnotatedMethods(java.lang.String annotationName) |
java.util.Set<MethodMetadata> |
AnnotationMetadata.getAnnotatedMethods(java.lang.String annotationName)
Retrieve the method metadata for all methods that are annotated
(or meta-annotated) with the given annotation type.
|
| Modifier and Type | Class and Description |
|---|---|
class |
MethodMetadataReadingVisitor
ASM method visitor which looks for the annotations defined on a method,
exposing them through the
MethodMetadata
interface. |
| Modifier and Type | Field and Description |
|---|---|
protected java.util.Set<MethodMetadata> |
MethodMetadataReadingVisitor.methodMetadataSet |
protected java.util.Set<MethodMetadata> |
AnnotationMetadataReadingVisitor.methodMetadataSet |
| Modifier and Type | Method and Description |
|---|---|
java.util.Set<MethodMetadata> |
AnnotationMetadataReadingVisitor.getAnnotatedMethods(java.lang.String annotationName) |
| Constructor and Description |
|---|
MethodMetadataReadingVisitor(java.lang.String methodName,
int access,
java.lang.String declaringClassName,
java.lang.String returnTypeName,
java.lang.ClassLoader classLoader,
java.util.Set<MethodMetadata> methodMetadataSet) |