Uses of Class
nonapi.io.github.classgraph.fileslice.Slice
-
Packages that use Slice Package Description nonapi.io.github.classgraph.fastzipfilereader nonapi.io.github.classgraph.fileslice nonapi.io.github.classgraph.fileslice.reader -
-
Uses of Slice in nonapi.io.github.classgraph.fastzipfilereader
Fields in nonapi.io.github.classgraph.fastzipfilereader declared as Slice Modifier and Type Field Description private SliceFastZipEntry. sliceTheSlicefor the zip entry's raw data (which can be either stored or deflated).(package private) SlicePhysicalZipFile. sliceTheSlicefor the zipfile.SliceZipFileSlice. sliceTheSlicecontaining the zipfile.Fields in nonapi.io.github.classgraph.fastzipfilereader with type parameters of type Slice Modifier and Type Field Description private java.util.Set<Slice>NestedJarHandler. openSlicesFileSliceinstances that are currently open.Methods in nonapi.io.github.classgraph.fastzipfilereader that return Slice Modifier and Type Method Description SliceFastZipEntry. getSlice()Lazily get zip entry slice -- this is deferred until zip entry data needs to be read, in order to avoid randomly seeking within zipfile for every entry as the central directory is read.SliceNestedJarHandler. readAllBytesWithSpilloverToDisk(java.io.InputStream inputStream, java.lang.String tempFileBaseName, long inputStreamLengthHint, LogNode log)Read all the bytes in anInputStream, with spillover to a temporary file on disk if a maximum buffer size is exceeded.Methods in nonapi.io.github.classgraph.fastzipfilereader with parameters of type Slice Modifier and Type Method Description voidNestedJarHandler. markSliceAsClosed(Slice slice)Mark aSliceas closed.voidNestedJarHandler. markSliceAsOpen(Slice slice)Mark aSliceas open, so it can be closed when theScanResultis closed. -
Uses of Slice in nonapi.io.github.classgraph.fileslice
Subclasses of Slice in nonapi.io.github.classgraph.fileslice Modifier and Type Class Description classArraySliceA byte array slice.classFileSliceAFileslice.classPathSliceAPathslice.Fields in nonapi.io.github.classgraph.fileslice declared as Slice Modifier and Type Field Description protected SliceSlice. parentSliceThe parent slice.Methods in nonapi.io.github.classgraph.fileslice that return Slice Modifier and Type Method Description SliceArraySlice. slice(long offset, long length, boolean isDeflatedZipEntry, long inflatedLengthHint)Slice this slice to form a sub-slice.SliceFileSlice. slice(long offset, long length, boolean isDeflatedZipEntry, long inflatedLengthHint)Slice the file.SlicePathSlice. slice(long offset, long length, boolean isDeflatedZipEntry, long inflatedLengthHint)Slice the file.abstract SliceSlice. slice(long offset, long length, boolean isDeflatedZipEntry, long inflatedLengthHint)Constructors in nonapi.io.github.classgraph.fileslice with parameters of type Slice Constructor Description 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. -
Uses of Slice in nonapi.io.github.classgraph.fileslice.reader
Constructors in nonapi.io.github.classgraph.fileslice.reader with parameters of type Slice Constructor Description ClassfileReader(Slice slice, Resource resourceToClose)Constructor.
-