Package jadx.zip
Interface IZipEntry
- All Known Implementing Classes:
FallbackZipEntry,JadxZipEntry
public interface IZipEntry
-
Method Summary
Modifier and TypeMethodDescriptionbyte[]getBytes()Uncompressed byteslongStream of uncompressed bytes.getName()Zip entry namelongbooleanbooleanReturn true ifgetBytes()method is more optimal to use other thangetInputStream()
-
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 ifgetBytes()method is more optimal to use other thangetInputStream()
-