Package io.micronaut.core.beans
Class AbstractBeanIntrospectionReference<T>
- java.lang.Object
-
- io.micronaut.core.beans.AbstractBeanIntrospectionReference<T>
-
- Type Parameters:
T
- The bean type
- All Implemented Interfaces:
AnnotationMetadataProvider
,AnnotationSource
,BeanIntrospectionReference<T>
,Named
@Internal public abstract class AbstractBeanIntrospectionReference<T> extends java.lang.Object implements BeanIntrospectionReference<T>
Abstract bean introspection reference used byBeanIntrospector
to soft load introspections. This class is subclasses at compilation time by generated byte code and should not be used directly.- Since:
- 1.1
-
-
Field Summary
-
Fields inherited from interface io.micronaut.core.annotation.AnnotationSource
EMPTY
-
-
Constructor Summary
Constructors Modifier Constructor Description protected
AbstractBeanIntrospectionReference()
Default constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getName()
boolean
isPresent()
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.micronaut.core.annotation.AnnotationMetadataProvider
findAnnotation, findAnnotation, findDeclaredAnnotation, findDeclaredAnnotation, getAnnotationMetadata, isAnnotationPresent, isDeclaredAnnotationPresent, synthesize, synthesizeAll, synthesizeAnnotationsByType, synthesizeDeclared, synthesizeDeclared, synthesizeDeclaredAnnotationsByType
-
Methods inherited from interface io.micronaut.core.annotation.AnnotationSource
getAnnotation, getAnnotation, getDeclaredAnnotation, getDeclaredAnnotation, isAnnotationPresent, isDeclaredAnnotationPresent, synthesize, synthesizeDeclared
-
Methods inherited from interface io.micronaut.core.beans.BeanIntrospectionReference
getBeanType, load
-
-
-
-
Constructor Detail
-
AbstractBeanIntrospectionReference
@Internal protected AbstractBeanIntrospectionReference()
Default constructor.
-
-