Searched defs:ZipEntry (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/java/util/zip/
H A DZipEntry.java38 * {@link ZipOutputStream} shows how {@code ZipEntry} is used in conjunction with those two classes.
40 public class ZipEntry implements ZipConstants, Cloneable { class in inherits:ZipConstants,Cloneable
70 public ZipEntry(String name, String comment, long crc, long compressedSize, method in class:ZipEntry
87 * Constructs a new {@code ZipEntry} with the specified name. The name is actually a path,
93 public ZipEntry(String name) { method in class:ZipEntry
102 * Returns the comment for this {@code ZipEntry}, or {@code null} if there is no comment.
110 * Gets the compressed size of this {@code ZipEntry}.
120 * Gets the checksum for this {@code ZipEntry}.
129 * Gets the extra information for this {@code ZipEntry}.
139 * Gets the compression method for this {@code ZipEntry}
335 public ZipEntry(ZipEntry ze) { method in class:ZipEntry
382 ZipEntry(byte[] cdeHdrBuf, InputStream cdStream, Charset defaultCharset, boolean isZip64) throws IOException { method in class:ZipEntry
[all...]

Completed in 97 milliseconds