Uses of Class
nonapi.io.github.classgraph.fastzipfilereader.NestedJarHandler
-
Packages that use NestedJarHandler Package Description io.github.classgraph nonapi.io.github.classgraph.fastzipfilereader nonapi.io.github.classgraph.fileslice -
-
Uses of NestedJarHandler in io.github.classgraph
Fields in io.github.classgraph declared as NestedJarHandler Modifier and Type Field Description private NestedJarHandler
ClasspathElementDir. nestedJarHandler
The nested jar handler.private NestedJarHandler
ClasspathElementZip. nestedJarHandler
The nested jar handler.private 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 NestedJarHandler Modifier and Type Method Description private Resource
ClasspathElementDir. newResource(java.nio.file.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 NestedJarHandler Constructor Description ClasspathElementDir(Scanner.ClasspathEntryWorkUnit workUnit, NestedJarHandler nestedJarHandler, ScanSpec scanSpec)
A directory classpath element.ClasspathElementZip(Scanner.ClasspathEntryWorkUnit workUnit, NestedJarHandler nestedJarHandler, ScanSpec scanSpec)
A jarfile classpath element.ScanResult(ScanSpec scanSpec, java.util.List<ClasspathElement> classpathOrder, java.util.List<java.lang.String> rawClasspathEltOrderStrs, ClasspathFinder classpathFinder, java.util.Map<java.lang.String,ClassInfo> classNameToClassInfo, java.util.Map<java.lang.String,PackageInfo> packageNameToPackageInfo, java.util.Map<java.lang.String,ModuleInfo> moduleNameToModuleInfo, java.util.Map<java.io.File,java.lang.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 NestedJarHandler Modifier and Type Field Description (package private) NestedJarHandler
PhysicalZipFile. nestedJarHandler
The nested jar handler.Methods in nonapi.io.github.classgraph.fastzipfilereader with parameters of type NestedJarHandler Modifier and Type Method Description private 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 NestedJarHandler Constructor Description LogicalZipFile(ZipFileSlice zipFileSlice, NestedJarHandler nestedJarHandler, LogNode log, boolean enableMultiReleaseVersions)
Construct a logical zipfile from a slice of a physical zipfile.PhysicalZipFile(byte[] arr, java.io.File outermostFile, java.lang.String pathStr, NestedJarHandler nestedJarHandler)
Construct aPhysicalZipFile
from a byte array.PhysicalZipFile(java.io.File file, NestedJarHandler nestedJarHandler, LogNode log)
Construct aPhysicalZipFile
from a file on disk.PhysicalZipFile(java.io.InputStream inputStream, long inputStreamLengthHint, java.lang.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.PhysicalZipFile(java.nio.file.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 NestedJarHandler Modifier and Type Field Description protected NestedJarHandler
Slice. nestedJarHandler
TheNestedJarHandler
.Constructors in nonapi.io.github.classgraph.fileslice with parameters of type NestedJarHandler Constructor Description ArraySlice(byte[] arr, boolean isDeflatedZipEntry, long inflatedLengthHint, NestedJarHandler nestedJarHandler)
Constructor for treating a whole array as a slice.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(java.io.File file, boolean isDeflatedZipEntry, long inflatedLengthHint, NestedJarHandler nestedJarHandler, LogNode log)
Constructor for toplevel file slice.FileSlice(java.io.File file, NestedJarHandler nestedJarHandler, LogNode log)
Constructor for toplevel file slice.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(java.nio.file.Path path, boolean isDeflatedZipEntry, long inflatedLengthHint, NestedJarHandler nestedJarHandler)
Constructor for toplevel file slice.PathSlice(java.nio.file.Path path, NestedJarHandler nestedJarHandler)
Constructor for toplevel file slice.PathSlice(PathSlice parentSlice, long offset, long length, boolean isDeflatedZipEntry, long inflatedLengthHint, NestedJarHandler nestedJarHandler)
Constructor for treating a range of a file as a slice.Slice(long length, boolean isDeflatedZipEntry, long inflatedLengthHint, NestedJarHandler nestedJarHandler)
Constructor.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.
-