Performs a logical AND of this target bit set with the argument bit set.
Performs a logical AND of this target bit set with the argument bit set.
Clears all of the bits in this
BitSet
whose corresponding bit is set in the specified
BitSet
.
Clears all of the bits in this
BitSet
whose corresponding bit is set in the specified
BitSet
.
Sets all of the bits in this BitSet to false
.
FluentBitSet.clear(int bitIndex)
Sets the bit specified by the index to false
.
FluentBitSet.clear(int... bitIndexArray)
Sets the bits specified by the indexes to false
.
FluentBitSet.clear(int fromIndex,
int toIndex)
Sets the bits from the specified fromIndex
(inclusive) to the specified toIndex
(exclusive) to
false
.
FluentBitSet.flip(int bitIndex)
Sets the bit at the specified index to the complement of its current value.
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.get(int fromIndex,
int toIndex)
Returns a new
BitSet
composed of bits from this
BitSet
from
fromIndex
(inclusive) to
toIndex
(exclusive).
Performs a logical OR of this bit set with the bit set argument.
Performs a logical OR of this bit set with the bit set argument.
Performs a logical OR of this bit set with the bit set arguments.
FluentBitSet.set(int bitIndex)
Sets the bit at the specified index to true
.
FluentBitSet.set(int... bitIndexArray)
Sets the bit at the specified indexes to true
.
FluentBitSet.set(int bitIndex,
boolean value)
Sets the bit at the specified index to the specified value.
FluentBitSet.set(int fromIndex,
int toIndex)
Sets the bits from the specified fromIndex
(inclusive) to the specified toIndex
(exclusive) to
true
.
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.
Sets the bits from the specified fromIndex
(inclusive) to the specified toIndex
(inclusive) to
true
.
Performs a logical XOR of this bit set with the bit set argument.
Performs a logical XOR of this bit set with the bit set argument.