Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Uses of Class
java.util.BitSet

Uses of BitSet in java.util
 

Methods in java.util that return BitSet
 BitSet BitSet.get(int from, int to)
          Returns a new BitSet composed of a range of bits from this one.
 

Methods in java.util with parameters of type BitSet
 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.