- cardinality() - Method in class java.util.BitSet
-
Returns the number of bits set to true
in this BitSet
.
- clear(int) - Method in class java.util.BitSet
-
Sets the bit specified by the index to false
.
- clear(int, int) - Method in class java.util.BitSet
-
Sets the bits from the specified fromIndex
(inclusive) to the specified toIndex
(exclusive) to
false
.
- clear() - Method in class java.util.BitSet
-
Sets all of the bits in this BitSet to false
.
- clone() - Method in class java.util.BitSet
-
Cloning this BitSet
produces a new BitSet
that is equal to it.