public class ZCompressorInputStream extends InternalLZWInputStream
bitsCached, bitsCachedSize, characters, clearCode, codeSize, in, prefixes, previousCode, tableSize| Constructor and Description |
|---|
ZCompressorInputStream(java.io.InputStream inputStream) |
| Modifier and Type | Method and Description |
|---|---|
protected int |
addEntry(int previousCode,
byte character)
Add a new entry to the dictionary.
|
protected int |
decompressNextSymbol()
Read the next code and expand it.
|
protected int |
readNextCode()
Reads the next code from the stream.
|
addEntry, addRepeatOfPreviousCode, close, expandCodeToOutputStack, initializeTables, read, read, setClearCodecount, count, getBytesRead, getCount, pushedBackBytespublic ZCompressorInputStream(java.io.InputStream inputStream)
throws java.io.IOException
java.io.IOExceptionprotected int readNextCode()
throws java.io.IOException
This method is only protected for technical reasons and is not part of Commons Compress' published API. It may change or disappear without warning.
readNextCode in class InternalLZWInputStreamjava.io.IOExceptionprotected int addEntry(int previousCode,
byte character)
throws java.io.IOException
This method is only protected for technical reasons and is not part of Commons Compress' published API. It may change or disappear without warning.
addEntry in class InternalLZWInputStreamjava.io.IOExceptionprotected int decompressNextSymbol()
throws java.io.IOException
This method is only protected for technical reasons and is not part of Commons Compress' published API. It may change or disappear without warning.
decompressNextSymbol in class InternalLZWInputStreamjava.io.IOException