FluentBitSet |
FluentBitSet.and(java.util.BitSet set) |
Performs a logical AND of this target bit set with the argument bit set.
|
FluentBitSet |
FluentBitSet.and(FluentBitSet set) |
Performs a logical AND of this target bit set with the argument bit set.
|
FluentBitSet |
FluentBitSet.andNot(java.util.BitSet set) |
Clears all of the bits in this BitSet whose corresponding bit is set in the specified BitSet .
|
FluentBitSet |
FluentBitSet.andNot(FluentBitSet set) |
Clears all of the bits in this BitSet whose corresponding bit is set in the specified BitSet .
|
FluentBitSet |
FluentBitSet.clear() |
Sets all of the bits in this BitSet to false .
|
FluentBitSet |
FluentBitSet.clear(int bitIndex) |
Sets the bit specified by the index to false .
|
FluentBitSet |
FluentBitSet.clear(int... bitIndexArray) |
Sets the bits specified by the indexes to false .
|
FluentBitSet |
FluentBitSet.clear(int fromIndex,
int toIndex) |
Sets the bits from the specified fromIndex (inclusive) to the specified toIndex (exclusive) to
false .
|
FluentBitSet |
FluentBitSet.flip(int bitIndex) |
Sets the bit at the specified index to the complement of its current value.
|
FluentBitSet |
FluentBitSet.flip(int fromIndex,
int toIndex) |
Sets each bit from the specified fromIndex (inclusive) to the specified toIndex (exclusive) to the
complement of its current value.
|
FluentBitSet |
FluentBitSet.get(int fromIndex,
int toIndex) |
Gets a new BitSet composed of bits from this BitSet from fromIndex (inclusive) to
toIndex (exclusive).
|
FluentBitSet |
FluentBitSet.or(java.util.BitSet set) |
Performs a logical OR of this bit set with the bit set argument.
|
FluentBitSet |
FluentBitSet.or(FluentBitSet set) |
Performs a logical OR of this bit set with the bit set argument.
|
FluentBitSet |
FluentBitSet.or(FluentBitSet... set) |
Performs a logical OR of this bit set with the bit set arguments.
|
FluentBitSet |
FluentBitSet.set(int bitIndex) |
Sets the bit at the specified index to true .
|
FluentBitSet |
FluentBitSet.set(int... bitIndexArray) |
Sets the bit at the specified indexes to true .
|
FluentBitSet |
FluentBitSet.set(int bitIndex,
boolean value) |
Sets the bit at the specified index to the specified value.
|
FluentBitSet |
FluentBitSet.set(int fromIndex,
int toIndex) |
Sets the bits from the specified fromIndex (inclusive) to the specified toIndex (exclusive) to
true .
|
FluentBitSet |
FluentBitSet.set(int fromIndex,
int toIndex,
boolean value) |
Sets the bits from the specified fromIndex (inclusive) to the specified toIndex (exclusive) to the
specified value.
|
FluentBitSet |
FluentBitSet.setInclusive(int fromIndex,
int toIndex) |
Sets the bits from the specified fromIndex (inclusive) to the specified toIndex (inclusive) to
true .
|
FluentBitSet |
FluentBitSet.xor(java.util.BitSet set) |
Performs a logical XOR of this bit set with the bit set argument.
|
FluentBitSet |
FluentBitSet.xor(FluentBitSet set) |
Performs a logical XOR of this bit set with the bit set argument.
|