Class Huffman


  • public class Huffman
    extends java.lang.Object
    This class contains the Huffman Codes defined in RFC7541.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      (package private) static int[][] CODES  
      (package private) static char EOS  
      (package private) static int[][] LCCODES  
      (package private) static byte[] rowbits  
      (package private) static char[] rowsym  
      (package private) static char[] tree  
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private Huffman()  
    • Method Summary

      • Methods inherited from class java.lang.Object

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

      • CODES

        static final int[][] CODES
      • LCCODES

        static final int[][] LCCODES
      • tree

        static final char[] tree
      • rowsym

        static final char[] rowsym
      • rowbits

        static final byte[] rowbits
    • Constructor Detail

      • Huffman

        private Huffman()