Class RBCodecLZW


  • public class RBCodecLZW
    extends RBCodec
    LZW decompressor
    • Constructor Summary

      Constructors 
      Constructor Description
      RBCodecLZW​(byte[] bytes, int offset, int length, int early1)
      Creates a new LZW decoder for given bytes.
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static byte[] decode​(byte[] bytes, int offset, int length, int early)
      Returns a decoded byte array for given LZW encoded byte array.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • RBCodecLZW

        public RBCodecLZW​(byte[] bytes,
                          int offset,
                          int length,
                          int early1)
        Creates a new LZW decoder for given bytes.
    • Method Detail

      • decode

        public static byte[] decode​(byte[] bytes,
                                    int offset,
                                    int length,
                                    int early)
        Returns a decoded byte array for given LZW encoded byte array.