TrueZIP Driver ZIP 7.0

Uses of Class
de.schlichtherle.truezip.zip.ZipEntry

Packages that use ZipEntry
de.schlichtherle.truezip.fs.archive.zip The archive driver family for ZIP files. 
de.schlichtherle.truezip.zip A drop-in replacement for the classes in the package java.util.zip for reading and writing ZIP files. 
 

Uses of ZipEntry in de.schlichtherle.truezip.fs.archive.zip
 

Subclasses of ZipEntry in de.schlichtherle.truezip.fs.archive.zip
 class JarArchiveEntry
          Respects the different date/time conversion in JAR files.
 class ZipArchiveEntry
          An adapter class to make the ZipEntry class implement the FsArchiveEntry interface.
 

Constructors in de.schlichtherle.truezip.fs.archive.zip with parameters of type ZipEntry
JarArchiveEntry(String name, ZipEntry template)
           
ZipArchiveEntry(String name, ZipEntry template)
           
 

Uses of ZipEntry in de.schlichtherle.truezip.zip
 

Classes in de.schlichtherle.truezip.zip with type parameters of type ZipEntry
 class RawZipFile<E extends ZipEntry>
          Provides unsafe (raw) access to a ZIP file using unsynchronized methods and shared ZipEntry instances.
 class RawZipOutputStream<E extends ZipEntry>
          Provides unsafe (raw) access to a ZIP file using unsynchronized methods and shared ZipEntry instances.
 interface ZipEntryFactory<E extends ZipEntry>
          A factory for ZipEntrys.
 

Fields in de.schlichtherle.truezip.zip declared as ZipEntry
private  E RawZipOutputStream.entry
          Current entry.
private  ZipEntry RawZipFile.CheckedInputStream.entry
           
private  ZipEntry RawZipFile.RawCheckedInputStream.entry
           
 

Fields in de.schlichtherle.truezip.zip with type parameters of type ZipEntry
(package private) static ZipEntryFactory<ZipEntry> DefaultZipEntryFactory.SINGLETON
           
 

Methods in de.schlichtherle.truezip.zip that return ZipEntry
 ZipEntry ZipEntry.clone()
           
 ZipEntry ZipOutputStream.getEntry(String name)
          Returns a clone of the entry for the given name or null if no entry with this name exists.
 ZipEntry ZipFile.getEntry(String name)
          Returns a clone of the entry for the given name or null if no entry with this name exists.
 ZipEntry DefaultZipEntryFactory.newEntry(String name)
           
 

Methods in de.schlichtherle.truezip.zip that return types with arguments of type ZipEntry
 Enumeration<? extends ZipEntry> ZipOutputStream.entries()
          Deprecated. Use ZipOutputStream.iterator() instead.
 Enumeration<? extends ZipEntry> ZipFile.entries()
          Enumerates clones of all entries in this ZIP file.
 Enumeration<? extends ZipEntry> RawZipOutputStream.entries()
          Deprecated. Use RawZipOutputStream.iterator() instead.
 Iterator<ZipEntry> ZipOutputStream.iterator()
          Returns a safe iteration of clones for all entries written to this ZIP file so far.
 Iterator<ZipEntry> ZipFile.iterator()
          Iterates through clones for all entries in this ZIP file.
 

Methods in de.schlichtherle.truezip.zip with parameters of type ZipEntry
private static void RawZipOutputStream.checkLocalFileHeaderData(ZipEntry entry)
           
private static int RawZipFile.getBufferSize(ZipEntry entry)
           
 InputStream RawZipFile.getCheckedInputStream(ZipEntry entry)
          Equivalent to getInputStream(entry.getName(), true, true) instead.
 InputStream RawZipFile.getInputStream(ZipEntry entry)
          Equivalent to getInputStream(entry.getName(), false, true) instead.
 void ZipOutputStream.putNextEntry(ZipEntry entry, boolean deflate)
           
private  void RawZipOutputStream.writeCentralFileHeader(ZipEntry entry)
          Writes a Central File Header record.
 

Constructors in de.schlichtherle.truezip.zip with parameters of type ZipEntry
RawZipFile.CheckedInputStream(InputStream in, ZipEntry entry, int size)
           
RawZipFile.RawCheckedInputStream(InputStream in, ZipEntry entry, int size)
           
ZipEntry(String name, ZipEntry template)
          Constructs a new ZIP entry with the given name which has all other properties copied from the given template.
 


TrueZIP Driver ZIP 7.0

Copyright © 2005-2011 Schlichtherle IT Services. All Rights Reserved.