Uses of Class
nonapi.io.github.classgraph.fastzipfilereader.ZipFileSlice
-
Packages that use ZipFileSlice Package Description nonapi.io.github.classgraph.fastzipfilereader -
-
Uses of ZipFileSlice in nonapi.io.github.classgraph.fastzipfilereader
Subclasses of ZipFileSlice in nonapi.io.github.classgraph.fastzipfilereader Modifier and Type Class Description class
LogicalZipFile
A logical zipfile, which represents a zipfile contained within a ZipFileSlice of a PhysicalZipFile.Fields in nonapi.io.github.classgraph.fastzipfilereader declared as ZipFileSlice Modifier and Type Field Description private ZipFileSlice
ZipFileSlice. parentZipFileSlice
The parent slice, or null if this is the toplevel slice (the whole zipfile).Fields in nonapi.io.github.classgraph.fastzipfilereader with type parameters of type ZipFileSlice Modifier and Type Field Description private SingletonMap<FastZipEntry,ZipFileSlice,java.io.IOException>
NestedJarHandler. fastZipEntryToZipFileSliceMap
A singleton map from aFastZipEntry
to theZipFileSlice
wrapping either the zip entry data, if the entry is stored, or a ByteBuffer, if the zip entry was inflated to memory, or a physical file on disk if the zip entry was inflated to a temporary file.private SingletonMap<ZipFileSlice,LogicalZipFile,java.io.IOException>
NestedJarHandler. zipFileSliceToLogicalZipFileMap
A singleton map from aZipFileSlice
to theLogicalZipFile
for that slice.Methods in nonapi.io.github.classgraph.fastzipfilereader that return ZipFileSlice Modifier and Type Method Description ZipFileSlice
ZipFileSlice. getParentZipFileSlice()
Get the parent ZipFileslice, or return null if this is a toplevel slice (i.e.Constructors in nonapi.io.github.classgraph.fastzipfilereader with parameters of type ZipFileSlice Constructor Description LogicalZipFile(ZipFileSlice zipFileSlice, NestedJarHandler nestedJarHandler, LogNode log, boolean enableMultiReleaseVersions)
Construct a logical zipfile from a slice of a physical zipfile.ZipFileSlice(ZipFileSlice other)
Clone constructor.
-