Uses of Class
io.github.lukehutch.fastclasspathscanner.ScanResult
-
Packages that use ScanResult Package Description io.github.lukehutch.fastclasspathscanner -
-
Uses of ScanResult in io.github.lukehutch.fastclasspathscanner
Methods in io.github.lukehutch.fastclasspathscanner that return ScanResult Modifier and Type Method Description static ScanResult
ScanResult. fromJSON(String json)
Deserialize a ScanResult from previously-saved JSON.ScanResult
FastClasspathScanner. scan()
Scans the classpath for matching files, and calls any MatchProcessors if a match is identified.ScanResult
FastClasspathScanner. scan(int numThreads)
Scans the classpath for matching files, and calls any MatchProcessors if a match is identified.ScanResult
FastClasspathScanner. scan(ExecutorService executorService, int numParallelTasks)
Scans the classpath for matching files, and calls any MatchProcessors if a match is identified.Methods in io.github.lukehutch.fastclasspathscanner that return types with arguments of type ScanResult Modifier and Type Method Description Future<ScanResult>
FastClasspathScanner. scanAsync(ExecutorService executorService, int numParallelTasks)
Asynchronously scans the classpath for matching files, and calls any MatchProcessors if a match is identified.Methods in io.github.lukehutch.fastclasspathscanner with parameters of type ScanResult Modifier and Type Method Description static ClassTypeSignature
ClassTypeSignature. parse(String className, String typeDescriptor, ScanResult scanResult)
Parse a class type signature or class type descriptor.static MethodTypeSignature
MethodTypeSignature. parse(String definingClassName, String typeDescriptor, ScanResult scanResult)
Parse a method signature.static TypeSignature
TypeSignature. parse(String typeDescriptor, ScanResult scanResult)
Parse a type signature.void
FastClasspathScanner.ScanResultProcessor. processScanResult(ScanResult scanResult)
Process the result of an asynchronous scan after scanning has completed.Constructors in io.github.lukehutch.fastclasspathscanner with parameters of type ScanResult Constructor Description MethodParameterInfo(AnnotationInfo[] annotationInfo, int modifiers, TypeSignature typeDescriptor, TypeSignature typeSignature, String name, ScanResult scanResult)
-