Skip navigation links
A B C D E F G H I J L M N R S T U Z 

A

Adler32 - Class in java.util.zip
Computes Adler32 checksum for a stream of data.
Adler32() - Constructor for class java.util.zip.Adler32
Creates a new instance of the Adler32 class.
available() - Method in class java.util.zip.InflaterInputStream
Returns 0 after EOF has been reached, otherwise always return 1.
available() - Method in class java.util.zip.ZipInputStream
Returns 0 after EOF has reached for the current entry data, otherwise always return 1.

B

buf - Variable in class java.util.zip.InflaterInputStream
Input buffer for decompression.

C

Checksum - Interface in java.util.zip
An interface representing a data checksum.
clone() - Method in class java.util.zip.ZipEntry
Returns a copy of this entry.
close() - Method in class java.util.zip.InflaterInputStream
Closes this input stream and releases any system resources associated with the stream.
close() - Method in class java.util.zip.ZipInputStream
Closes this input stream and releases any system resources associated with the stream.
closeEntry() - Method in class java.util.zip.ZipInputStream
Closes the current ZIP entry and positions the stream for reading the next entry.
CRC32 - Class in java.util.zip
Computes CRC32 data checksum of a data stream.
CRC32() - Constructor for class java.util.zip.CRC32
 
createZipEntry(String) - Method in class java.util.zip.ZipInputStream
Creates a new ZipEntry object for the specified entry name.

D

DataFormatException - Exception in java.util.zip
Signals that a data format error has occurred.
DataFormatException() - Constructor for exception java.util.zip.DataFormatException
Constructs a DataFormatException with no detail message.
DataFormatException(String) - Constructor for exception java.util.zip.DataFormatException
Constructs a DataFormatException with the specified detail message.
DEFLATED - Static variable in class java.util.zip.ZipEntry
Compression method for compressed (deflated) entries.

E

end() - Method in class java.util.zip.Inflater
Closes the decompressor and discards any unprocessed input.

F

fill() - Method in class java.util.zip.InflaterInputStream
Fills input buffer with more data to decompress.
finalize() - Method in class java.util.zip.Inflater
Closes the decompressor when garbage is collected.
finished() - Method in class java.util.zip.Inflater
Returns true if the end of the compressed data stream has been reached.

G

getAdler() - Method in class java.util.zip.Inflater
Returns the ADLER-32 value of the uncompressed data.
getBytesRead() - Method in class java.util.zip.Inflater
Returns the total number of compressed bytes input so far.
getBytesWritten() - Method in class java.util.zip.Inflater
Returns the total number of uncompressed bytes output so far.
getComment() - Method in class java.util.zip.ZipEntry
Returns the comment string for the entry, or null if none.
getCompressedSize() - Method in class java.util.zip.ZipEntry
Returns the size of the compressed entry data, or -1 if not known.
getCrc() - Method in class java.util.zip.ZipEntry
Returns the CRC-32 checksum of the uncompressed entry data, or -1 if not known.
getExtra() - Method in class java.util.zip.ZipEntry
Returns the extra field data for the entry, or null if none.
getMethod() - Method in class java.util.zip.ZipEntry
Returns the compression method of the entry, or -1 if not specified.
getName() - Method in class java.util.zip.ZipEntry
Returns the name of the entry.
getNextEntry() - Method in class java.util.zip.ZipInputStream
Reads the next ZIP file entry and positions the stream at the beginning of the entry data.
getRemaining() - Method in class java.util.zip.Inflater
Returns the total number of bytes remaining in the input buffer.
getSize() - Method in class java.util.zip.ZipEntry
Returns the uncompressed size of the entry data, or -1 if not known.
getTime() - Method in class java.util.zip.ZipEntry
Returns the modification time of the entry, or -1 if not specified.
getTotalIn() - Method in class java.util.zip.Inflater
Returns the total number of compressed bytes input so far.
getTotalOut() - Method in class java.util.zip.Inflater
Returns the total number of uncompressed bytes output so far.
getValue() - Method in class java.util.zip.Adler32
Returns the Adler32 data checksum computed so far.
getValue() - Method in interface java.util.zip.Checksum
Returns the current checksum value.
getValue() - Method in class java.util.zip.CRC32
Returns the CRC32 data checksum computed so far.

H

hashCode() - Method in class java.util.zip.ZipEntry
Returns the hash code value for this entry.

I

inf - Variable in class java.util.zip.InflaterInputStream
Decompressor for this stream.
inflate(byte[], int, int) - Method in class java.util.zip.Inflater
Uncompresses bytes into specified buffer.
inflate(byte[]) - Method in class java.util.zip.Inflater
Uncompresses bytes into specified buffer.
Inflater - Class in java.util.zip
This class provides support for general purpose decompression using the popular ZLIB compression library.
Inflater(boolean) - Constructor for class java.util.zip.Inflater
Creates a new decompressor.
Inflater() - Constructor for class java.util.zip.Inflater
Creates a new decompressor.
InflaterInputStream - Class in java.util.zip
This class implements a stream filter for uncompressing data in the "deflate" compression format.
InflaterInputStream(InputStream, Inflater, int) - Constructor for class java.util.zip.InflaterInputStream
Creates a new input stream with the specified decompressor and buffer size.
InflaterInputStream(InputStream, Inflater) - Constructor for class java.util.zip.InflaterInputStream
Creates a new input stream with the specified decompressor and a default buffer size.
InflaterInputStream(InputStream) - Constructor for class java.util.zip.InflaterInputStream
Creates a new input stream with a default decompressor and buffer size.
isDirectory() - Method in class java.util.zip.ZipEntry
Returns true if this is a directory entry.

J

java.util.zip - package java.util.zip
Back 2 Browser Bytecode Translator Copyright (C) 2012 Jaroslav Tulach This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2 of the License.

L

len - Variable in class java.util.zip.InflaterInputStream
Length of input buffer.

M

mark(int) - Method in class java.util.zip.InflaterInputStream
Marks the current position in this input stream.
mark(int) - Method in class java.util.zip.ZipInputStream
 
markSupported() - Method in class java.util.zip.InflaterInputStream
Tests if this input stream supports the mark and reset methods.
markSupported() - Method in class java.util.zip.ZipInputStream
 

N

needsDictionary() - Method in class java.util.zip.Inflater
Returns true if a preset dictionary is needed for decompression.
needsInput() - Method in class java.util.zip.Inflater
Returns true if no data remains in the input buffer.

R

read() - Method in class java.util.zip.InflaterInputStream
Reads a byte of uncompressed data.
read(byte[], int, int) - Method in class java.util.zip.InflaterInputStream
Reads uncompressed data into an array of bytes.
read(byte[], int, int) - Method in class java.util.zip.ZipInputStream
Reads from the current ZIP entry into an array of bytes.
read() - Method in class java.util.zip.ZipInputStream
 
read(byte[]) - Method in class java.util.zip.ZipInputStream
 
reset() - Method in class java.util.zip.Adler32
Resets the Adler32 checksum to the initial value.
reset() - Method in interface java.util.zip.Checksum
Resets the checksum to its initial value.
reset() - Method in class java.util.zip.CRC32
Resets the CRC32 data checksum as if no update was ever called.
reset() - Method in class java.util.zip.Inflater
Resets inflater so that a new set of input data can be processed.
reset() - Method in class java.util.zip.InflaterInputStream
Repositions this stream to the position at the time the mark method was last called on this input stream.
reset() - Method in class java.util.zip.ZipInputStream
 

S

setComment(String) - Method in class java.util.zip.ZipEntry
Sets the optional comment string for the entry.
setCompressedSize(long) - Method in class java.util.zip.ZipEntry
Sets the size of the compressed entry data.
setCrc(long) - Method in class java.util.zip.ZipEntry
Sets the CRC-32 checksum of the uncompressed entry data.
setDictionary(byte[], int, int) - Method in class java.util.zip.Inflater
Sets the preset dictionary to the given array of bytes.
setDictionary(byte[]) - Method in class java.util.zip.Inflater
Sets the preset dictionary to the given array of bytes.
setExtra(byte[]) - Method in class java.util.zip.ZipEntry
Sets the optional extra field data for the entry.
setInput(byte[], int, int) - Method in class java.util.zip.Inflater
Sets input data for decompression.
setInput(byte[]) - Method in class java.util.zip.Inflater
Sets input data for decompression.
setMethod(int) - Method in class java.util.zip.ZipEntry
Sets the compression method for the entry.
setSize(long) - Method in class java.util.zip.ZipEntry
Sets the uncompressed size of the entry data.
setTime(long) - Method in class java.util.zip.ZipEntry
Sets the modification time of the entry.
skip(long) - Method in class java.util.zip.InflaterInputStream
Skips specified number of bytes of uncompressed data.
skip(long) - Method in class java.util.zip.ZipInputStream
Skips specified number of bytes in the current ZIP entry.
STORED - Static variable in class java.util.zip.ZipEntry
Compression method for uncompressed entries.

T

toString() - Method in class java.util.zip.ZipEntry
Returns a string representation of the ZIP entry.

U

update(int) - Method in class java.util.zip.Adler32
Updates the checksum with the byte b.
update(byte[]) - Method in class java.util.zip.Adler32
Updates the checksum with the bytes taken from the array.
update(byte[], int, int) - Method in class java.util.zip.Adler32
Updates the checksum with the bytes taken from the array.
update(int) - Method in interface java.util.zip.Checksum
Updates the current checksum with the specified byte.
update(byte[], int, int) - Method in interface java.util.zip.Checksum
Updates the current checksum with the specified array of bytes.
update(int) - Method in class java.util.zip.CRC32
Updates the checksum with the int bval.
update(byte[], int, int) - Method in class java.util.zip.CRC32
Adds the byte array to the data checksum.
update(byte[]) - Method in class java.util.zip.CRC32
Adds the complete byte array to the data checksum.

Z

ZipEntry - Class in java.util.zip
This class is used to represent a ZIP file entry.
ZipEntry(String) - Constructor for class java.util.zip.ZipEntry
Creates a new zip entry with the specified name.
ZipEntry(ZipEntry) - Constructor for class java.util.zip.ZipEntry
Creates a new zip entry with fields taken from the specified zip entry.
ZipException - Exception in java.util.zip
Signals that a Zip exception of some sort has occurred.
ZipException() - Constructor for exception java.util.zip.ZipException
Constructs a ZipException with null as its error detail message.
ZipException(String) - Constructor for exception java.util.zip.ZipException
Constructs a ZipException with the specified detail message.
ZipInputStream - Class in java.util.zip
This class implements an input stream filter for reading files in the ZIP file format.
ZipInputStream(InputStream) - Constructor for class java.util.zip.ZipInputStream
Creates a new ZIP input stream.
A B C D E F G H I J L M N R S T U Z 
Skip navigation links

Copyright © 2020 API Design. All Rights Reserved.