Class BitStream.In

java.lang.Object
org.h2.dev.util.BitStream.In
Enclosing class:
BitStream

public static class BitStream.In extends Object
A bit input stream.
  • Constructor Details

  • Method Details

    • readGolomb

      public int readGolomb(int divisor)
      Read a value that is stored as a Golomb code.
      Parameters:
      divisor - the divisor
      Returns:
      the value
    • readBit

      public int readBit()
      Read a bit.
      Returns:
      the bit (0 or 1)
    • close

      public void close()
      Close the stream. This will also close the underlying stream.