Class CompressionHuffman

java.lang.Object
net.sourceforge.plantuml.code.CompressionHuffman
All Implemented Interfaces:
Compression

public class CompressionHuffman extends java.lang.Object implements Compression
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    byte[]
    compress(byte[] in)
    Shrinks the given in array with length len
    decompress(byte[] in)
    Grows the given in array with length len compressed with the shrink method.

    Methods inherited from class java.lang.Object

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

    • CompressionHuffman

      public CompressionHuffman()
  • Method Details