public enum AFilterType extends Enum<AFilterType>
@ComponentScan.AComponentScan,
AComponentScan#includeFilters(),
AComponentScan.excludeFilters(),
org.springframework.core.type.filter.TypeFilter| Enum Constant and Description |
|---|
ANNOTATION
Filter candidates marked with a given annotation.
|
ASPECTJ
Filter candidates matching a given AspectJ type pattern expression.
|
ASSIGNABLE_TYPE
Filter candidates assignable to a given type.
|
CUSTOM
Filter candidates using a given custom
org.springframework.core.type.filter.TypeFilter implementation. |
REGEX
Filter candidates matching a given regex pattern.
|
| Modifier and Type | Method and Description |
|---|---|
static AFilterType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AFilterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AFilterType ANNOTATION
org.springframework.core.type.filter.AnnotationTypeFilterpublic static final AFilterType ASSIGNABLE_TYPE
org.springframework.core.type.filter.AssignableTypeFilterpublic static final AFilterType ASPECTJ
org.springframework.core.type.filter.AspectJTypeFilterpublic static final AFilterType REGEX
org.springframework.core.type.filter.RegexPatternTypeFilterpublic static final AFilterType CUSTOM
org.springframework.core.type.filter.TypeFilter implementation.public static AFilterType[] values()
for (AFilterType c : AFilterType.values()) System.out.println(c);
public static AFilterType valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2025. All rights reserved.