void |
Bits.and(Bits other) |
Performs a logical AND of this target bit set with the argument bit set.
|
void |
Bits.andNot(Bits other) |
Clears all of the bits in this bit set whose corresponding bit is set in the specified bit set.
|
boolean |
Bits.containsAll(Bits other) |
Returns true if this bit set is a super set of the specified set, i.e.
|
boolean |
Bits.intersects(Bits other) |
Returns true if the specified BitSet has any bits set to true that are also set to true in this BitSet.
|
void |
Bits.or(Bits other) |
Performs a logical OR of this bit set with the bit set argument.
|
void |
Bits.xor(Bits other) |
Performs a logical XOR of this bit set with the bit set argument.
|