Gets the size of the uncompressed data. @return the size or -1 if unknown.
()
| 255 | * @return the size or -1 if unknown. |
| 256 | */ |
| 257 | public long getSize() |
| 258 | { |
| 259 | return (known & KNOWN_SIZE) != 0 ? size & 0xffffffffL : -1L; |
| 260 | } |
| 261 | |
| 262 | /** |
| 263 | * Sets the size of the compressed data. |
no outgoing calls
no test coverage detected