Class LZDecoder

java.lang.Object
org.graalvm.shadowed.org.tukaani.xz.lz.LZDecoder

public final class LZDecoder extends Object
  • Constructor Details

    • LZDecoder

      public LZDecoder(int dictSize, byte[] presetDict, ArrayCache arrayCache)
  • Method Details

    • putArraysToCache

      public void putArraysToCache(ArrayCache arrayCache)
    • reset

      public void reset()
    • setLimit

      public void setLimit(int outMax)
    • hasSpace

      public boolean hasSpace()
    • hasPending

      public boolean hasPending()
    • getPos

      public int getPos()
    • getByte

      public int getByte(int dist)
    • putByte

      public void putByte(byte b)
    • repeat

      public void repeat(int dist, int len) throws IOException
      Throws:
      IOException
    • repeatPending

      public void repeatPending() throws IOException
      Throws:
      IOException
    • copyUncompressed

      public void copyUncompressed(DataInputStream inData, int len) throws IOException
      Throws:
      IOException
    • flush

      public int flush(byte[] out, int outOff)