public final enum

FilterType

extends Enum<E extends Enum<E>>
java.lang.Object
   ↳ java.lang.Enum<E extends java.lang.Enum<E>>
     ↳ org.springframework.context.annotation.FilterType

Class Overview

Enumeration of the type filters that may be used in conjunction with @ComponentScan.

See Also

Summary

Enum Values
FilterType  ANNOTATION  Filter candidates marked with a given annotation. 
FilterType  ASSIGNABLE_TYPE  Filter candidates assignable to a given type. 
FilterType  CUSTOM  Filter candidates using a given custom TypeFilter implementation  
Public Methods
static FilterType valueOf(String name)
final static FilterType[] values()
[Expand]
Inherited Methods
From class java.lang.Enum
From class java.lang.Object
From interface java.lang.Comparable

Enum Values

public static final FilterType ANNOTATION

Filter candidates marked with a given annotation.

public static final FilterType ASSIGNABLE_TYPE

Filter candidates assignable to a given type.

public static final FilterType CUSTOM

Filter candidates using a given custom TypeFilter implementation

Public Methods

public static FilterType valueOf (String name)

public static final FilterType[] values ()