Uses of Interface
io.github.lukehutch.fastclasspathscanner.scanner.matchers.FileMatchProcessorAny
-
-
Uses of FileMatchProcessorAny in io.github.lukehutch.fastclasspathscanner.matchprocessor
Subinterfaces of FileMatchProcessorAny in io.github.lukehutch.fastclasspathscanner.matchprocessor Modifier and Type Interface Description interface
FileMatchContentsProcessor
The method to run when a file with a matching path is found on the classpath.interface
FileMatchContentsProcessorWithContext
The method to run when a file with a matching path is found on the classpath.interface
FileMatchProcessor
The method to run when a file with a matching path is found on the classpath.interface
FileMatchProcessorWithContext
The method to run when a file with a matching path is found on the classpath.interface
FilenameMatchProcessor
The method to run when a file with a matching path is found on the classpath. -
Uses of FileMatchProcessorAny in io.github.lukehutch.fastclasspathscanner.scanner
Methods in io.github.lukehutch.fastclasspathscanner.scanner with parameters of type FileMatchProcessorAny Modifier and Type Method Description void
ScanSpec. matchFilenameExtension(String extensionToMatch, FileMatchProcessorAny fileMatchProcessor)
Calls the given FileMatchProcessor if files are found on the classpath that have the given file extension.void
ScanSpec. matchFilenamePath(String relativePathToMatch, FileMatchProcessorAny fileMatchProcessor)
Calls the given FileMatchProcessor if files are found on the classpath that exactly match the given relative path.void
ScanSpec. matchFilenamePathLeaf(String pathLeafToMatch, FileMatchProcessorAny fileMatchProcessor)
Calls the given FileMatchProcessor if files are found on the classpath that exactly match the given path leafname.void
ScanSpec. matchFilenamePattern(String pathRegexp, FileMatchProcessorAny fileMatchProcessor)
Calls the given FileMatchProcessor if files are found on the classpath with the given regexp pattern in their path.void
ClasspathResource. processFileMatch(FileMatchProcessorAny fileMatchProcessor, LogNode log)
-
Uses of FileMatchProcessorAny in io.github.lukehutch.fastclasspathscanner.scanner.matchers
Constructors in io.github.lukehutch.fastclasspathscanner.scanner.matchers with parameters of type FileMatchProcessorAny Constructor Description FileMatchProcessorWrapper(FileMatchProcessorWrapper.FilePathTester filePathTester, FileMatchProcessorAny fileMatchProcessor)
-