/*
 * Copyright 2002-2013 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.context.annotation;

Enumeration of the type filters that may be used in conjunction with @ComponentScan.
Author:Mark Fisher, Juergen Hoeller, Chris Beams
See Also:
Since:2.5
/** * Enumeration of the type filters that may be used in conjunction with * {@link ComponentScan @ComponentScan}. * * @author Mark Fisher * @author Juergen Hoeller * @author Chris Beams * @since 2.5 * @see ComponentScan * @see ComponentScan#includeFilters() * @see ComponentScan#excludeFilters() * @see org.springframework.core.type.filter.TypeFilter */
public enum FilterType {
Filter candidates marked with a given annotation.
See Also:
  • AnnotationTypeFilter
/** * Filter candidates marked with a given annotation. * @see org.springframework.core.type.filter.AnnotationTypeFilter */
ANNOTATION,
Filter candidates assignable to a given type.
See Also:
  • AssignableTypeFilter
/** * Filter candidates assignable to a given type. * @see org.springframework.core.type.filter.AssignableTypeFilter */
ASSIGNABLE_TYPE,
Filter candidates matching a given AspectJ type pattern expression.
See Also:
  • AspectJTypeFilter
/** * Filter candidates matching a given AspectJ type pattern expression. * @see org.springframework.core.type.filter.AspectJTypeFilter */
ASPECTJ,
Filter candidates matching a given regex pattern.
See Also:
  • RegexPatternTypeFilter
/** * Filter candidates matching a given regex pattern. * @see org.springframework.core.type.filter.RegexPatternTypeFilter */
REGEX,
Filter candidates using a given custom TypeFilter implementation.
/** Filter candidates using a given custom * {@link org.springframework.core.type.filter.TypeFilter} implementation. */
CUSTOM }