BitSet: get(int bitIndex)

boolean get(int bitIndex)
Returns the value of the bit with the specified index.

/*
 * Bit 65 is true
 */
import java.util.BitSet;

public class MainClass {
  public static void main(String[] argv) {
    BitSet bs = new BitSet();
    bs.set(65);
    System.out.println("Bit 65 is " + bs.get(65));
  }
}
Home 
  Java Book 
    Collection  

BitSet:
  1. Working with variable-length bitsets
  2. new BitSet(int size)
  3. BitSet: and(BitSet anotherBitSet)
  4. BitSet: andNot(BitSet set)
  5. BitSet: clone()
  6. BitSet: get(int bitIndex)
  7. BitSet: length()
  8. BitSet: or(BitSet anotherBitSet)
  9. BitSet: set(int bitIndex)
  10. BitSet: size()
  11. BitSet: xor(BitSet anotherBitSet)