Uses of Class
io.github.classgraph.PackageInfo
-
Packages that use PackageInfo Package Description io.github.classgraph -
-
Uses of PackageInfo in io.github.classgraph
Methods in io.github.classgraph that return PackageInfo Modifier and Type Method Description static PackageInfo
PackageInfo. getPackage(String packageName, Map<String,PackageInfo> packageNameToPackageInfo)
Get thePackageInfo
object for the named package, also creatingPackageInfo
objects for any needed parent packages.PackageInfo
ModuleInfo. getPackageInfo(String packageName)
Get thePackageInfo
object for the named packagein this module, or null if the package was not found in this module.PackageInfo
ScanResult. getPackageInfo(String packageName)
Get thePackageInfo
object for the named package, or null if no package of the requested name was found during the scan.PackageInfo
PackageInfo. getParent()
The parent package of this package, or null if this is the root package.Methods in io.github.classgraph that return types with arguments of type PackageInfo Modifier and Type Method Description List<PackageInfo>
PackageInfo. getChildren()
The child packages of this package, or the empty list if none.Methods in io.github.classgraph with parameters of type PackageInfo Modifier and Type Method Description boolean
PackageInfoList.PackageInfoFilter. accept(PackageInfo packageInfo)
Whether or not to allow anPackageInfo
list item through the filter.int
PackageInfo. compareTo(PackageInfo o)
Method parameters in io.github.classgraph with type arguments of type PackageInfo Modifier and Type Method Description static PackageInfo
PackageInfo. getPackage(String packageName, Map<String,PackageInfo> packageNameToPackageInfo)
Get thePackageInfo
object for the named package, also creatingPackageInfo
objects for any needed parent packages.
-