Package jadx.zip

Interface IZipEntry

All Known Implementing Classes:
FallbackZipEntry, JadxZipEntry

public interface IZipEntry
  • Method Details

    • getName

      String getName()
      Zip entry name
    • getBytes

      byte[] getBytes()
      Uncompressed bytes
    • getInputStream

      InputStream getInputStream()
      Stream of uncompressed bytes.
    • getCompressedSize

      long getCompressedSize()
    • getUncompressedSize

      long getUncompressedSize()
    • isDirectory

      boolean isDirectory()
    • getZipFile

      File getZipFile()
    • preferBytes

      boolean preferBytes()
      Return true if getBytes() method is more optimal to use other than getInputStream()