Searched defs:BitSet (Results 1 - 1 of 1) sorted by relevance

/libcore/luni/src/main/java/java/util/
H A DBitSet.java29 * The {@code BitSet} class implements a
31 * Each element is either true or false. A {@code BitSet} is created with a given size and grows
34 public class BitSet implements Serializable, Cloneable { class in inherits:Serializable,Cloneable
74 * Creates a new {@code BitSet} with size equal to 64 bits.
76 public BitSet() { method in class:BitSet
81 * Creates a new {@code BitSet} with size equal to {@code bitCount}, rounded up to
86 public BitSet(int bitCount) { method in class:BitSet
94 private BitSet(long[] bits) { method in class:BitSet
106 BitSet clone = (BitSet) supe
[all...]

Completed in 150 milliseconds