| java.lang.Object | |||
| ↳ | org.springframework.core.AttributeAccessorSupport | ||
| ↳ | org.springframework.beans.BeanMetadataAttributeAccessor | ||
| ↳ | org.springframework.beans.factory.support.AutowireCandidateQualifier | ||
Qualifier for resolving autowire candidates. A bean definition that includes one or more such qualifiers enables fine-grained matching against annotations on a field or parameter to be autowired.
| Fields | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| VALUE_KEY | |||||||||||
| Public Constructors | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Construct a qualifier to match against an annotation of the
given type.
| |||||||||||
Construct a qualifier to match against an annotation of the
given type name.
| |||||||||||
Construct a qualifier to match against an annotation of the
given type whose
value attribute also matches
the specified value. | |||||||||||
Construct a qualifier to match against an annotation of the
given type name whose
value attribute also matches
the specified value. | |||||||||||
| Public Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
Retrieve the type name.
| |||||||||||
|
[Expand]
Inherited Methods | |||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
From class
org.springframework.beans.BeanMetadataAttributeAccessor
| |||||||||||
From class
org.springframework.core.AttributeAccessorSupport
| |||||||||||
From class
java.lang.Object
| |||||||||||
From interface
org.springframework.beans.BeanMetadataElement
| |||||||||||
From interface
org.springframework.core.AttributeAccessor
| |||||||||||
Construct a qualifier to match against an annotation of the given type.
| type | the annotation type |
|---|
Construct a qualifier to match against an annotation of the given type name.
The type name may match the fully-qualified class name of the annotation or the short class name (without the package).
| typeName | the name of the annotation type |
|---|
Construct a qualifier to match against an annotation of the
given type whose value attribute also matches
the specified value.
| type | the annotation type |
|---|---|
| value | the annotation value to match |
Construct a qualifier to match against an annotation of the
given type name whose value attribute also matches
the specified value.
The type name may match the fully-qualified class name of the annotation or the short class name (without the package).
| typeName | the name of the annotation type |
|---|---|
| value | the annotation value to match |
Retrieve the type name. This value will be the same as the type name provided to the constructor or the fully-qualified class name if a Class instance was provided to the constructor.