MCPcopy Create free account
hub / github.com/dumbledore/AlbiteREADER / getSize

Method getSize

src/gnu/zip/ZipEntry.java:257–260  ·  view source on GitHub ↗

Gets the size of the uncompressed data. @return the size or -1 if unknown.

()

Source from the content-addressed store, hash-verified

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.

Callers 2

getInputStreamMethod · 0.80
fileSizeMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected