Commit 241f223a authored by Riegel's avatar Riegel
Browse files

Feat: Add isDecompressed() function

2 merge requests!28Version 3.17.0 Release,!26Add ZIP-archive support
Showing with 9 additions and 0 deletions
+9 -0
......@@ -124,6 +124,15 @@ public class CityGmlZipEntry implements Serializable {
fileSize = size;
}
public boolean isDecompressed() {
return decompressed;
}
/**
* Returns the estimated uncompressed filesize of this entry.
*
* @return filesize in bytes, -1 if filesize unknown
*/
public long getFileSize() {
return fileSize;
}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment