Java org.springframework.beans.factory.config DependencyDescriptor fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.beans.factory.config DependencyDescriptor fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.beans.factory.config DependencyDescriptor.

The text is from its open source code.

Constructor

DependencyDescriptor(MethodParameter methodParameter, boolean required)
Create a new descriptor for a method or constructor parameter.
DependencyDescriptor(Field field, boolean required)
Create a new descriptor for a field.

Method

Annotation[]getAnnotations()
Obtain the annotations associated with the wrapped field or method/constructor parameter.
StringgetDependencyName()
Determine the name of the wrapped parameter/field.
ClassgetDependencyType()
Determine the declared (non-generic) type of the wrapped parameter/field.
FieldgetField()
Return the wrapped Field, if any.
MethodParametergetMethodParameter()
Return the wrapped MethodParameter, if any.
booleanisEager()
Return whether this dependency is 'eager' in the sense of eagerly resolving potential target beans for type matching.