Uses of Class
org.apache.commons.compress.utils.BitInputStream
Packages that use BitInputStream
Package
Description
Provides stream classes for reading and writing archives using
the ZIP format.
Provides stream classes for compressing and decompressing
streams using the BZip2 algorithm.
Provides a stream that allows decompressing streams using the
DEFLATE64(tm) algorithm.
Generic LZW implementation.
-
Uses of BitInputStream in org.apache.commons.compress.archivers.zip
Subclasses of BitInputStream in org.apache.commons.compress.archivers.zipModifier and TypeClassDescription(package private) class
Iterates over the bits of an InputStream. -
Uses of BitInputStream in org.apache.commons.compress.compressors.bzip2
Fields in org.apache.commons.compress.compressors.bzip2 declared as BitInputStreamMethods in org.apache.commons.compress.compressors.bzip2 with parameters of type BitInputStreamModifier and TypeMethodDescriptionprivate static boolean
BZip2CompressorInputStream.bsGetBit
(BitInputStream bin) private static int
BZip2CompressorInputStream.bsGetInt
(BitInputStream bin) private static char
BZip2CompressorInputStream.bsGetUByte
(BitInputStream bin) private static int
BZip2CompressorInputStream.bsR
(BitInputStream bin, int n) read bits from the input streamprivate int
BZip2CompressorInputStream.readNextByte
(BitInputStream in) -
Uses of BitInputStream in org.apache.commons.compress.compressors.deflate64
Fields in org.apache.commons.compress.compressors.deflate64 declared as BitInputStreamMethods in org.apache.commons.compress.compressors.deflate64 with parameters of type BitInputStreamModifier and TypeMethodDescriptionprivate static int
HuffmanDecoder.nextSymbol
(BitInputStream reader, HuffmanDecoder.BinaryTreeNode tree) private static void
HuffmanDecoder.populateDynamicTables
(BitInputStream reader, int[] literals, int[] distances) private static long
HuffmanDecoder.readBits
(BitInputStream reader, int numBits) -
Uses of BitInputStream in org.apache.commons.compress.compressors.lzw
Fields in org.apache.commons.compress.compressors.lzw declared as BitInputStream