mirror of
https://github.com/ethauvin/JSON-java.git
synced 2025-06-17 16:00:51 -07:00
Java 1.8.
This commit is contained in:
parent
48d31b7f5c
commit
a9a0762383
26 changed files with 747 additions and 819 deletions
|
@ -3,6 +3,7 @@ package org.json.zip;
|
|||
import java.io.IOException;
|
||||
|
||||
public interface BitReader {
|
||||
|
||||
/**
|
||||
* Read one bit.
|
||||
*
|
||||
|
@ -18,16 +19,16 @@ public interface BitReader {
|
|||
public long nrBits();
|
||||
|
||||
/**
|
||||
* Check that the rest of the block has been padded with zeroes.
|
||||
* Check that the rest of the block has been padded with zeros.
|
||||
*
|
||||
* @param factor
|
||||
* @param width
|
||||
* The size in bits of the block to pad. This will typically be
|
||||
* 8, 16, 32, 64, 128, 256, etc.
|
||||
* @return true if the block was zero padded, or false if the the padding
|
||||
* contained any one bits.
|
||||
* @throws IOException
|
||||
*/
|
||||
public boolean pad(int factor) throws IOException;
|
||||
public boolean pad(int width) throws IOException;
|
||||
|
||||
/**
|
||||
* Read some bits.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue