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 ScanResultScanResult. fromJSON(String json)Deserialize a ScanResult from previously-saved JSON.ScanResultFastClasspathScanner. scan()Scans the classpath for matching files, and calls any MatchProcessors if a match is identified.ScanResultFastClasspathScanner. scan(int numThreads)Scans the classpath for matching files, and calls any MatchProcessors if a match is identified.ScanResultFastClasspathScanner. 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 ClassTypeSignatureClassTypeSignature. parse(String className, String typeDescriptor, ScanResult scanResult)Parse a class type signature or class type descriptor.static MethodTypeSignatureMethodTypeSignature. parse(String definingClassName, String typeDescriptor, ScanResult scanResult)Parse a method signature.static TypeSignatureTypeSignature. parse(String typeDescriptor, ScanResult scanResult)Parse a type signature.voidFastClasspathScanner.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)
-