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

/libcore/ojluni/src/main/java/sun/security/util/
H A DBitArray.java38 public class BitArray { class
54 * Creates a BitArray of the specified size, initialized to zeros.
56 public BitArray(int length) throws IllegalArgumentException { method in class:BitArray
58 throw new IllegalArgumentException("Negative length for BitArray");
68 * Creates a BitArray of the specified size, initialized from the
70 * index zero in the BitArray. The array a must be large enough
71 * to specify a value for every bit in the BitArray. In other words,
74 public BitArray(int length, byte[] a) throws IllegalArgumentException { method in class:BitArray
77 throw new IllegalArgumentException("Negative length for BitArray");
103 * Create a BitArray whos
106 public BitArray(boolean[] bits) { method in class:BitArray
119 private BitArray(BitArray ba) { method in class:BitArray
[all...]

Completed in 49 milliseconds