BufferBitSet |
BufferBitSet.copy() |
Identical to clone(), except returns a BufferBitSet instead
of Object.
|
BufferBitSet |
BufferBitSet.get(int fromIndex,
int toIndex) |
Returns a new BufferBitSet composed of bits from this bitset from
fromIndex (inclusive) to toIndex (exclusive).
|
static BufferBitSet |
BufferBitSet.random(int n,
int size) |
Returns a new BufferBitSet with n bits set randomly in the
range zero to size (exclusive).
|
static BufferBitSet |
BufferBitSet.random(int n,
int size,
java.util.Random random) |
Returns a new BufferBitSet with n bits set randomly in the
range zero to size (exclusive).
|
static BufferBitSet |
BufferBitSet.readFrom(java.nio.channels.ReadableByteChannel channel) |
Read a bitset from the specified ReadableByteChannel.
|
BufferBitSet |
BufferBitSet.resizable(boolean resizable) |
|
BufferBitSet |
BufferBitSet.shiftRight(int offset) |
Returns a copy of this bitset with each bit shifted right by offset.
|
static BufferBitSet |
BufferBitSet.valueOf(byte[] bytes) |
Returns a new resizable bitset containing all of the bits in the given byte
array.
|
static BufferBitSet |
BufferBitSet.valueOf(java.util.BitSet bs) |
Returns a new resizable BufferBitSet containing all of the bits in
the given BitSet.
|