Uses of Class
io.github.lukehutch.fastclasspathscanner.ModuleRef
-
Packages that use ModuleRef Package Description io.github.lukehutch.fastclasspathscanner io.github.lukehutch.fastclasspathscanner.utils -
-
Uses of ModuleRef in io.github.lukehutch.fastclasspathscanner
Methods in io.github.lukehutch.fastclasspathscanner that return ModuleRef Modifier and Type Method Description ModuleRef
ClassInfo. getModuleRef()
The module in the module path that this class was found within, or null if this class was found in a directory or jar in the classpath.Methods in io.github.lukehutch.fastclasspathscanner that return types with arguments of type ModuleRef Modifier and Type Method Description static List<ModuleRef>
ModuleRef. findModuleRefs(Class<?>[] callStack)
Get all visible ModuleReferences in all layers, given an array of stack frameClass<?>
references.List<ModuleRef>
FastClasspathScanner. getModules()
Returns references for all the visible modules.List<ModuleRef>
ScanResult. getModules()
Returns references for all the visible modules.Methods in io.github.lukehutch.fastclasspathscanner with parameters of type ModuleRef Modifier and Type Method Description int
ModuleRef. compareTo(ModuleRef o)
-
Uses of ModuleRef in io.github.lukehutch.fastclasspathscanner.utils
Methods in io.github.lukehutch.fastclasspathscanner.utils that return ModuleRef Modifier and Type Method Description ModuleRef
ClasspathOrModulePathEntry. getModuleRef()
Returns the ModuleRef for this module, if this RelativePath corresponds to a module (in JDK9+).Methods in io.github.lukehutch.fastclasspathscanner.utils that return types with arguments of type ModuleRef Modifier and Type Method Description List<ModuleRef>
ClassLoaderAndModuleFinder. getNonSystemModuleRefs()
Get non-system modules as ModuleRef wrappers, or null if no modules were found (e.g.List<ModuleRef>
ClassLoaderAndModuleFinder. getSystemModuleRefs()
Get system modules as ModuleRef wrappers, or null if no modules were found (e.g.Methods in io.github.lukehutch.fastclasspathscanner.utils with parameters of type ModuleRef Modifier and Type Method Description Recycler<ModuleReaderProxy,IOException>
NestedJarHandler. getModuleReaderProxyRecycler(ModuleRef moduleRef, LogNode log)
Get a ModuleReaderProxy recycler given a ModuleRef.Constructors in io.github.lukehutch.fastclasspathscanner.utils with parameters of type ModuleRef Constructor Description ClasspathOrModulePathEntry(ModuleRef moduleRef, NestedJarHandler nestedJarHandler, LogNode log)
A relative path for a module (in JDK9+).
-