Class HuffmanDecoder.DecoderState

    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      private DecoderState()  
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      (package private) abstract int available()  
      (package private) abstract boolean hasData()  
      (package private) abstract int read​(byte[] b, int off, int len)  
      (package private) abstract HuffmanState state()  
      • Methods inherited from class java.lang.Object

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

      • DecoderState

        private DecoderState()
    • Method Detail

      • read

        abstract int read​(byte[] b,
                          int off,
                          int len)
                   throws java.io.IOException
        Throws:
        java.io.IOException
      • hasData

        abstract boolean hasData()
      • available

        abstract int available()
                        throws java.io.IOException
        Throws:
        java.io.IOException