Uses of Class
nonapi.io.github.classgraph.fastzipfilereader.NestedJarHandler
Packages that use NestedJarHandler
Package
Description
-
Uses of NestedJarHandler in io.github.classgraph
Fields in io.github.classgraph declared as NestedJarHandlerModifier and TypeFieldDescriptionprivate final NestedJarHandler
ClasspathElementDir.nestedJarHandler
The nested jar handler.private final NestedJarHandler
ClasspathElementZip.nestedJarHandler
The nested jar handler.private final NestedJarHandler
Scanner.nestedJarHandler
The nested jar handler.private NestedJarHandler
ScanResult.nestedJarHandler
The nested jar handler instance.Methods in io.github.classgraph with parameters of type NestedJarHandlerModifier and TypeMethodDescriptionprivate Resource
ClasspathElementDir.newResource
(Path resourcePath, NestedJarHandler nestedJarHandler) Create a newResource
object for a resource or classfile discovered while scanning paths.Constructors in io.github.classgraph with parameters of type NestedJarHandlerModifierConstructorDescription(package private)
ClasspathElementDir
(Scanner.ClasspathEntryWorkUnit workUnit, NestedJarHandler nestedJarHandler, ScanSpec scanSpec) A directory classpath element.(package private)
ClasspathElementZip
(Scanner.ClasspathEntryWorkUnit workUnit, NestedJarHandler nestedJarHandler, ScanSpec scanSpec) A jarfile classpath element.(package private)
ScanResult
(ScanSpec scanSpec, List<ClasspathElement> classpathOrder, List<String> rawClasspathEltOrderStrs, ClasspathFinder classpathFinder, Map<String, ClassInfo> classNameToClassInfo, Map<String, PackageInfo> packageNameToPackageInfo, Map<String, ModuleInfo> moduleNameToModuleInfo, Map<File, Long> fileToLastModified, NestedJarHandler nestedJarHandler, LogNode topLevelLog) The result of a scan. -
Uses of NestedJarHandler in nonapi.io.github.classgraph.fastzipfilereader
Fields in nonapi.io.github.classgraph.fastzipfilereader declared as NestedJarHandlerModifier and TypeFieldDescription(package private) NestedJarHandler
PhysicalZipFile.nestedJarHandler
The nested jar handler.Methods in nonapi.io.github.classgraph.fastzipfilereader with parameters of type NestedJarHandlerModifier and TypeMethodDescriptionprivate void
LogicalZipFile.readCentralDirectory
(NestedJarHandler nestedJarHandler, LogNode log) Read the central directory of the zipfile.Constructors in nonapi.io.github.classgraph.fastzipfilereader with parameters of type NestedJarHandlerModifierConstructorDescription(package private)
LogicalZipFile
(ZipFileSlice zipFileSlice, NestedJarHandler nestedJarHandler, LogNode log, boolean enableMultiReleaseVersions) Construct a logical zipfile from a slice of a physical zipfile.(package private)
PhysicalZipFile
(byte[] arr, File outermostFile, String pathStr, NestedJarHandler nestedJarHandler) Construct aPhysicalZipFile
from a byte array.(package private)
PhysicalZipFile
(File file, NestedJarHandler nestedJarHandler, LogNode log) Construct aPhysicalZipFile
from a file on disk.(package private)
PhysicalZipFile
(InputStream inputStream, long inputStreamLengthHint, String pathStr, NestedJarHandler nestedJarHandler, LogNode log) Construct aPhysicalZipFile
by reading from theInputStream
to an array in RAM, or spill to disk if theInputStream
is too long.(package private)
PhysicalZipFile
(Path path, NestedJarHandler nestedJarHandler, LogNode log) Construct aPhysicalZipFile
from aPath
. -
Uses of NestedJarHandler in nonapi.io.github.classgraph.fileslice
Fields in nonapi.io.github.classgraph.fileslice declared as NestedJarHandlerModifier and TypeFieldDescriptionprotected final NestedJarHandler
Slice.nestedJarHandler
TheNestedJarHandler
.Constructors in nonapi.io.github.classgraph.fileslice with parameters of type NestedJarHandlerModifierConstructorDescriptionArraySlice
(byte[] arr, boolean isDeflatedZipEntry, long inflatedLengthHint, NestedJarHandler nestedJarHandler) Constructor for treating a whole array as a slice.private
ArraySlice
(ArraySlice parentSlice, long offset, long length, boolean isDeflatedZipEntry, long inflatedLengthHint, NestedJarHandler nestedJarHandler) Constructor for treating a range of an array as a slice.FileSlice
(File file, boolean isDeflatedZipEntry, long inflatedLengthHint, NestedJarHandler nestedJarHandler, LogNode log) Constructor for toplevel file slice.FileSlice
(File file, NestedJarHandler nestedJarHandler, LogNode log) Constructor for toplevel file slice.private
FileSlice
(FileSlice parentSlice, long offset, long length, boolean isDeflatedZipEntry, long inflatedLengthHint, NestedJarHandler nestedJarHandler) Constructor for treating a range of a file as a slice.PathSlice
(Path path, boolean isDeflatedZipEntry, long inflatedLengthHint, NestedJarHandler nestedJarHandler) Constructor for toplevel file slice.PathSlice
(Path path, NestedJarHandler nestedJarHandler) Constructor for toplevel file slice.private
PathSlice
(PathSlice parentSlice, long offset, long length, boolean isDeflatedZipEntry, long inflatedLengthHint, NestedJarHandler nestedJarHandler) Constructor for treating a range of a file as a slice.protected
Slice
(long length, boolean isDeflatedZipEntry, long inflatedLengthHint, NestedJarHandler nestedJarHandler) Constructor.protected
Slice
(Slice parentSlice, long offset, long length, boolean isDeflatedZipEntry, long inflatedLengthHint, NestedJarHandler nestedJarHandler) Constructor for treating a range of a slice as a sub-slice.