Uses of Interface
com.e1c.g5.v8.fastzip.entry.IFzipEntry
-
Packages that use IFzipEntry Package Description com.e1c.g5.v8.fastzip This package provides support for FastZIP archive format.com.e1c.g5.v8.fastzip.entry com.e1c.g5.v8.fastzip.entry.fs -
-
Uses of IFzipEntry in com.e1c.g5.v8.fastzip
Classes in com.e1c.g5.v8.fastzip that implement IFzipEntry Modifier and Type Class Description class
StaticEntry
Testing FastZIP entry.Methods in com.e1c.g5.v8.fastzip that return IFzipEntry Modifier and Type Method Description IFzipEntry[]
StaticEntryRegistry. getEntries()
IFzipEntry
FzipIoTest.MultiReadEntryRegistry. readEntryDescriptor(Supplier<DataInput> inputSupplier)
IFzipEntry
StaticEntryRegistry. readEntryDescriptor(Supplier<DataInput> inputSupplier)
Methods in com.e1c.g5.v8.fastzip that return types with arguments of type IFzipEntry Modifier and Type Method Description Stream<IFzipEntry>
IFzipReader. entries()
Gets a stream of entry descriptors contained in the archive.Methods in com.e1c.g5.v8.fastzip with parameters of type IFzipEntry Modifier and Type Method Description void
IProgressListener. entryProcessed(IFzipEntry entry)
Notifies the listener that an entry was processed, either compressed or decompressed.void
IFzipWriter. write(IFzipEntry[] entries)
Writes entries to the archive.void
FzipIoTest.MultiReadEntryRegistry. writeEntryDescriptor(IFzipEntry entry, DataOutput out)
void
StaticEntryRegistry. writeEntryDescriptor(IFzipEntry entry, DataOutput out)
Constructors in com.e1c.g5.v8.fastzip with parameters of type IFzipEntry Constructor Description MultiReadEntryRegistry(byte[] bytes, IFzipEntry entry)
Constructor parameters in com.e1c.g5.v8.fastzip with type arguments of type IFzipEntry Constructor Description StaticEntryRegistry(Collection<IFzipEntry> entries)
-
Uses of IFzipEntry in com.e1c.g5.v8.fastzip.entry
Classes in com.e1c.g5.v8.fastzip.entry that implement IFzipEntry Modifier and Type Class Description class
AbstractNamedFzipEntry
Abstract implementation ofIFzipEntry
which has a name.Methods in com.e1c.g5.v8.fastzip.entry that return IFzipEntry Modifier and Type Method Description IFzipEntry
IFzipEntryRegistry. readEntryDescriptor(Supplier<DataInput> inputSupplier)
Deserializes entry fromDataInput
.Methods in com.e1c.g5.v8.fastzip.entry with parameters of type IFzipEntry Modifier and Type Method Description void
IFzipEntryRegistry. writeEntryDescriptor(IFzipEntry entry, DataOutput out)
Serializes an entry toDataOutput
. -
Uses of IFzipEntry in com.e1c.g5.v8.fastzip.entry.fs
Methods in com.e1c.g5.v8.fastzip.entry.fs that return IFzipEntry Modifier and Type Method Description IFzipEntry
FsFzipEntryRegistry. readEntryDescriptor(Supplier<DataInput> inputSupplier)
Methods in com.e1c.g5.v8.fastzip.entry.fs that return types with arguments of type IFzipEntry Modifier and Type Method Description Stream<IFzipEntry>
FsFzipEntryRegistry. createEntryDescriptor(Path path)
Creates entries for a path.Methods in com.e1c.g5.v8.fastzip.entry.fs with parameters of type IFzipEntry Modifier and Type Method Description void
FsFzipEntryRegistry. writeEntryDescriptor(IFzipEntry entry, DataOutput out)
Method parameters in com.e1c.g5.v8.fastzip.entry.fs with type arguments of type IFzipEntry Modifier and Type Method Description Stream<Path>
FsFzipEntryRegistry. getPaths(Stream<IFzipEntry> entries)
Get paths from a stream of entries.
-