Uses of Class
nonapi.io.github.classgraph.fastzipfilereader.FastZipEntry
-
Packages that use FastZipEntry Package Description io.github.classgraph nonapi.io.github.classgraph.fastzipfilereader -
-
Uses of FastZipEntry in io.github.classgraph
Methods in io.github.classgraph with parameters of type FastZipEntry Modifier and Type Method Description private Resource
ClasspathElementZip. newResource(FastZipEntry zipEntry, java.lang.String pathRelativeToPackageRoot)
Create a newResource
object for a resource or classfile discovered while scanning paths. -
Uses of FastZipEntry in nonapi.io.github.classgraph.fastzipfilereader
Fields in nonapi.io.github.classgraph.fastzipfilereader with type parameters of type FastZipEntry Modifier and Type Field Description java.util.List<FastZipEntry>
LogicalZipFile. entries
The zipfile entries.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.Methods in nonapi.io.github.classgraph.fastzipfilereader with parameters of type FastZipEntry Modifier and Type Method Description int
FastZipEntry. compareTo(FastZipEntry o)
Sort in decreasing order of version number, then lexicographically increasing order of unversioned entry path.private void
LogicalZipFile. parseManifest(FastZipEntry manifestZipEntry, LogNode log)
Parse the manifest entry of a zipfile.Constructors in nonapi.io.github.classgraph.fastzipfilereader with parameters of type FastZipEntry Constructor Description ZipFileSlice(FastZipEntry zipEntry)
Create a ZipFileSlice that wraps a single stored (not deflated)FastZipEntry
.ZipFileSlice(PhysicalZipFile physicalZipFile, FastZipEntry zipEntry)
Create a ZipFileSlice that wraps aPhysicalZipFile
that was extracted or inflated from a nested jar to memory or disk.
-