Gets the crc of the uncompressed data. @return the crc or -1 if unknown.
()
| 293 | * @return the crc or -1 if unknown. |
| 294 | */ |
| 295 | public long getCrc() |
| 296 | { |
| 297 | return (known & KNOWN_CRC) != 0 ? crc & 0xffffffffL : -1L; |
| 298 | } |
| 299 | |
| 300 | /** |
| 301 | * Sets the compression method. Only DEFLATED and STORED are |