/** * Gets a bit from the buffer. * * @return The value. * @throws IllegalStateException If the reader is not in bit access mode. */ public int getBit() { return getBits(1); }
/** * Gets a bit from the buffer. * * @return The value. * @throws IllegalStateException If the reader is not in bit access mode. */ public int getBit() { return getBits(1); }