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 ZipEntry(String name, String comment, long crc, long compressedSize, method in class:ZipEntry
88 * Constructs a new {@code ZipEntry} with the specified name. The name is actually a path,
94 public ZipEntry(String name) { method in class:ZipEntry
103 * Returns the comment for this {@code ZipEntry}, or {@code null} if there is no comment.
111 * Gets the compressed size of this {@code ZipEntry}.
121 * Gets the checksum for this {@code ZipEntry}.
130 * Gets the extra information for this {@code ZipEntry}.
140 * Gets the compression method for this {@code ZipEntry}
333 public ZipEntry(ZipEntry ze) { method in class:ZipEntry
381 ZipEntry(byte[] cdeHdrBuf, InputStream cdStream, Charset defaultCharset) throws IOException { method in class:ZipEntry
[all...]

Completed in 105 milliseconds