| Modifier and Type | Method and Description |
|---|---|
BufferBitSet |
BufferBitSet.get(int fromIndex,
int toIndex)
Returns a new
BufferBitSet composed of bits from this bitset from
fromIndex (inclusive) to toIndex (exclusive). |
BufferBitSet |
BufferBitSet.shiftRight(int offset)
Returns a copy of this bitset with each bit shifted right by
offset. |
static BufferBitSet |
BufferBitSet.valueOf(BitSet bs)
Returns a new
BufferBitSet containing all of the bits in the given
BitSet. |
static BufferBitSet |
BufferBitSet.valueOf(byte[] bytes)
Returns a new bit set containing all of the bits in the given byte array.
|
BufferBitSet |
BufferBitSet.withResizeBehavior(ResizeBehavior resizeBehavior)
Returns a new
BufferBitSet with the specified resize behavior. |
| Modifier and Type | Method and Description |
|---|---|
void |
BufferBitSet.and(BufferBitSet set)
Performs a logical AND of this target bitset with the argument bitset.
|
void |
BufferBitSet.andNot(BufferBitSet set)
Clears all of the bits in this bitset whose corresponding bit is set in the
specified bitset.
|
void |
BufferBitSet.or(BufferBitSet set)
Performs a logical OR of this bitset with the bitset argument.
|
void |
BufferBitSet.xor(BufferBitSet set)
Performs a logical XOR of this bitset with the bitset argument.
|
Copyright © 2019. All rights reserved.