Package com.github.junrar.unpack.decode
Class Decode
- java.lang.Object
-
- com.github.junrar.unpack.decode.Decode
-
- Direct Known Subclasses:
BitDecode,DistDecode,LitDecode,LowDistDecode,MultDecode,RepDecode
public class Decode extends java.lang.ObjectUsed to store information for lz decoding- Version:
- $LastChangedRevision$
-
-
Constructor Summary
Constructors Constructor Description Decode()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int[]getDecodeLen()returns the decode Length arrayint[]getDecodeNum()returns the decode num arrayint[]getDecodePos()returns the decodePos arrayintgetMaxNum()returns the max numvoidsetMaxNum(int maxNum)sets the max num
-
-
-
Method Detail
-
getDecodeLen
public int[] getDecodeLen()
returns the decode Length array- Returns:
- decodeLength
-
getDecodeNum
public int[] getDecodeNum()
returns the decode num array- Returns:
- decodeNum
-
getDecodePos
public int[] getDecodePos()
returns the decodePos array- Returns:
- decodePos
-
getMaxNum
public int getMaxNum()
returns the max num- Returns:
- maxNum
-
setMaxNum
public void setMaxNum(int maxNum)
sets the max num- Parameters:
maxNum- to be set to maxNum
-
-