Uses of Interface
io.github.lukehutch.fastclasspathscanner.matchprocessor.ClassMatchProcessor
-
Packages that use ClassMatchProcessor Package Description io.github.lukehutch.fastclasspathscanner io.github.lukehutch.fastclasspathscanner.scanner -
-
Uses of ClassMatchProcessor in io.github.lukehutch.fastclasspathscanner
Methods in io.github.lukehutch.fastclasspathscanner with parameters of type ClassMatchProcessor Modifier and Type Method Description FastClasspathScanner
FastClasspathScanner. matchAllAnnotationClasses(ClassMatchProcessor annotationClassMatchProcessor)
Calls the provided ClassMatchProcessor for all annotation classes (annotation definitions) found in whitelisted packages on the classpath.FastClasspathScanner
FastClasspathScanner. matchAllClasses(ClassMatchProcessor classMatchProcessor)
Calls the provided ClassMatchProcessor for all standard classes, interfaces and annotations found in whitelisted packages on the classpath.FastClasspathScanner
FastClasspathScanner. matchAllInterfaceClasses(ClassMatchProcessor interfaceClassMatchProcessor)
Calls the provided ClassMatchProcessor for all interface classes (interface definitions) found in whitelisted packages on the classpath.FastClasspathScanner
FastClasspathScanner. matchAllStandardClasses(ClassMatchProcessor standardClassMatchProcessor)
Calls the provided ClassMatchProcessor for all standard classes (i.e. -
Uses of ClassMatchProcessor in io.github.lukehutch.fastclasspathscanner.scanner
Methods in io.github.lukehutch.fastclasspathscanner.scanner with parameters of type ClassMatchProcessor Modifier and Type Method Description void
ScanSpec. matchAllAnnotationClasses(ClassMatchProcessor classMatchProcessor)
Calls the provided ClassMatchProcessor for all annotation classes (annotation definitions) found in whitelisted packages on the classpath.void
ScanSpec. matchAllClasses(ClassMatchProcessor classMatchProcessor)
Calls the provided ClassMatchProcessor for all standard classes, interfaces and annotations found in whitelisted packages on the classpath.void
ScanSpec. matchAllInterfaceClasses(ClassMatchProcessor classMatchProcessor)
Calls the provided ClassMatchProcessor for all interface classes (interface definitions) found in whitelisted packages on the classpath.void
ScanSpec. matchAllStandardClasses(ClassMatchProcessor classMatchProcessor)
Calls the provided ClassMatchProcessor for all standard classes (i.e.
-