| Package | Description |
|---|---|
| java.util |
Utilities
|
| Modifier and Type | Method and Description |
|---|---|
BitSet |
BitSet.get(int from,
int to)
Returns a new
BitSet composed of a range of bits from
this one. |
| Modifier and Type | Method and Description |
|---|---|
void |
BitSet.and(BitSet bs)
Performs the logical AND operation on this bit set and the
given
set. |
void |
BitSet.andNot(BitSet bs)
Performs the logical AND operation on this bit set and the
complement of the given
bs. |
boolean |
BitSet.intersects(BitSet set)
Returns true if the specified BitSet and this one share at least one
common true bit.
|
void |
BitSet.or(BitSet bs)
Performs the logical OR operation on this bit set and the
given
set. |
void |
BitSet.xor(BitSet bs)
Performs the logical XOR operation on this bit set and the
given
set. |