C# 클래스 Spring.Objects.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.
상속: ObjectMetadataAttributeAccessor
파일 보기 프로젝트 열기: spring-projects/spring-net 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
VALUE_KEY string

공개 메소드들

메소드 설명
AutowireCandidateQualifier ( Type type ) : System

Construct a qualifier to match against an annotation of the given type.

AutowireCandidateQualifier ( Type type, object value ) : System

Construct a qualifier to match against an annotation of the given type whose value attribute also matches the specified value.

AutowireCandidateQualifier ( string typeName ) : System

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).

AutowireCandidateQualifier ( string typeName, object value ) : System

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).

메소드 상세

AutowireCandidateQualifier() 공개 메소드

Construct a qualifier to match against an annotation of the given type.
public AutowireCandidateQualifier ( Type type ) : System
type System.Type type the annotation type
리턴 System

AutowireCandidateQualifier() 공개 메소드

Construct a qualifier to match against an annotation of the given type whose value attribute also matches the specified value.
public AutowireCandidateQualifier ( Type type, object value ) : System
type System.Type the annotation type
value object the annotation value to match
리턴 System

AutowireCandidateQualifier() 공개 메소드

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).

public AutowireCandidateQualifier ( string typeName ) : System
typeName string the name of the annotation type
리턴 System

AutowireCandidateQualifier() 공개 메소드

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).

public AutowireCandidateQualifier ( string typeName, object value ) : System
typeName string the name of the annotation type
value object the annotation value to match
리턴 System

프로퍼티 상세

VALUE_KEY 공개적으로 정적으로 프로퍼티

public static string VALUE_KEY
리턴 string