Uses of Class
io.github.classgraph.PackageInfo
-
Packages that use PackageInfo Package Description io.github.classgraph -
-
Uses of PackageInfo in io.github.classgraph
Fields in io.github.classgraph declared as PackageInfo Modifier and Type Field Description (package private) PackageInfoClassInfo. packageInfoInfo on the package containing the class.private PackageInfoPackageInfo. parentThe parent package of this package.Fields in io.github.classgraph with type parameters of type PackageInfo Modifier and Type Field Description private java.util.Set<PackageInfo>PackageInfo. childrenThe child packages of this package.java.util.List<PackageInfo>ScanResult.SerializationFormat. packageInfoThe list of allPackageInfoobjects.private java.util.Set<PackageInfo>ModuleInfo. packageInfoSetPackageInfoobjects for packages found within the class, if any, else null.private java.util.Map<java.lang.String,PackageInfo>ScanResult. packageNameToPackageInfoThe map from package name toPackageInfo.Methods in io.github.classgraph that return PackageInfo Modifier and Type Method Description (package private) static PackageInfoPackageInfo. getOrCreatePackage(java.lang.String packageName, java.util.Map<java.lang.String,PackageInfo> packageNameToPackageInfo, ScanSpec scanSpec)Get thePackageInfoobject for the named package, creating it if it doesn't exist, and also creatingPackageInfoobjects for any needed parent packages for which aPackageInfohas not yet been created.PackageInfoClassInfo. getPackageInfo()Get thePackageInfoobject for the class.PackageInfoModuleInfo. getPackageInfo(java.lang.String packageName)Get thePackageInfoobject for the named package in this module, or null if the package was not found in this module.PackageInfoScanResult. getPackageInfo(java.lang.String packageName)Get thePackageInfoobject for the named package, or null if no package of the requested name was found during the scan.PackageInfoPackageInfo. getParent()The parent package of this package, or null if this is the root package.Methods in io.github.classgraph with parameters of type PackageInfo Modifier and Type Method Description booleanPackageInfoList.PackageInfoFilter. accept(PackageInfo packageInfo)Whether or not to allow anPackageInfolist item through the filter.(package private) voidModuleInfo. addPackageInfo(PackageInfo packageInfo)Add aPackageInfoobject to thisModuleInfo.intPackageInfo. compareTo(PackageInfo o)Method parameters in io.github.classgraph with type arguments of type PackageInfo Modifier and Type Method Description (package private) static PackageInfoPackageInfo. getOrCreatePackage(java.lang.String packageName, java.util.Map<java.lang.String,PackageInfo> packageNameToPackageInfo, ScanSpec scanSpec)Get thePackageInfoobject for the named package, creating it if it doesn't exist, and also creatingPackageInfoobjects for any needed parent packages for which aPackageInfohas not yet been created.Constructor parameters in io.github.classgraph with type arguments of type PackageInfo Constructor Description PackageInfoList(java.util.Collection<PackageInfo> packageInfoCollection)Constructor.
-