Package jadx.zip
Interface IZipEntry
-
- All Known Implementing Classes:
FallbackZipEntry,JadxZipEntry
public interface IZipEntry
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description byte[]getBytes()Uncompressed byteslonggetCompressedSize()java.io.InputStreamgetInputStream()Stream of uncompressed bytes.java.lang.StringgetName()Zip entry namelonggetUncompressedSize()java.io.FilegetZipFile()booleanisDirectory()booleanpreferBytes()Return true ifgetBytes()method is more optimal to use other thangetInputStream()
-
-
-
Method Detail
-
getName
java.lang.String getName()
Zip entry name
-
getBytes
byte[] getBytes()
Uncompressed bytes
-
getInputStream
java.io.InputStream getInputStream()
Stream of uncompressed bytes.
-
getCompressedSize
long getCompressedSize()
-
getUncompressedSize
long getUncompressedSize()
-
isDirectory
boolean isDirectory()
-
getZipFile
java.io.File getZipFile()
-
preferBytes
boolean preferBytes()
Return true ifgetBytes()method is more optimal to use other thangetInputStream()
-
-