Class BitArray
java.lang.Object
ext.plantuml.com.google.zxing.common.BitArray
A simple, fast array of bits, represented compactly by an array of ints internally.
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidappendBit(boolean bit) voidappendBitArray(BitArray other) voidappendBits(int value, int numBits) Appends the least-significant bits, from value, in order from most-significant to least-significant.voidclear()Clears all bits (sets to false).voidflip(int i) Flips bit i.booleanget(int i) int[]intgetSize()intbooleanisRange(int start, int end, boolean value) Efficient method to check if a range of bits is set, or not set.voidreverse()Reverses all bits in the array.voidset(int i) Sets bit i.voidsetBulk(int i, int newBits) Sets a block of 32 bits, starting at bit i.voidtoBytes(int bitOffset, byte[] array, int offset, int numBytes) toString()void
-
Field Details
-
bits
public int[] bits -
size
public int size
-
-
Constructor Details
-
BitArray
public BitArray() -
BitArray
public BitArray(int size)
-
-
Method Details
-
getSize
public int getSize() -
getSizeInBytes
public int getSizeInBytes() -
get
public boolean get(int i) - Parameters:
i- bit to get- Returns:
- true iff bit i is set
-
set
public void set(int i) Sets bit i.- Parameters:
i- bit to set
-
flip
public void flip(int i) Flips bit i.- Parameters:
i- bit to set
-
setBulk
public void setBulk(int i, int newBits) Sets a block of 32 bits, starting at bit i.- Parameters:
i- first bit to setnewBits- the new value of the next 32 bits. Note again that the least-significant bit corresponds to bit i, the next-least-significant to i+1, and so on.
-
clear
public void clear()Clears all bits (sets to false). -
isRange
public boolean isRange(int start, int end, boolean value) Efficient method to check if a range of bits is set, or not set.- Parameters:
start- start of range, inclusive.end- end of range, exclusivevalue- if true, checks that bits in range are set, otherwise checks that they are not set- Returns:
- true iff all bits are set or not set in range, according to value argument
- Throws:
IllegalArgumentException- if end is less than or equal to start
-
appendBit
public void appendBit(boolean bit) -
appendBits
public void appendBits(int value, int numBits) Appends the least-significant bits, from value, in order from most-significant to least-significant. For example, appending 6 bits from 0x000001E will append the bits 0, 1, 1, 1, 1, 0 in that order. -
appendBitArray
-
xor
-
toBytes
public void toBytes(int bitOffset, byte[] array, int offset, int numBytes) - Parameters:
bitOffset- first bit to start writingarray- array to write into. Bytes are written most-significant byte first. This is the opposite of the internal representation, which is exposed bygetBitArray()offset- position in array to start writingnumBytes- how many bytes to write
-
getBitArray
public int[] getBitArray()- Returns:
- underlying array of ints. The first element holds the first 32 bits, and the least significant bit is bit 0.
-
reverse
public void reverse()Reverses all bits in the array. -
toString
-