Uses of Class
java.util.BitSet

Packages that use BitSet
java.util   
 

Uses of BitSet in java.util
 

Methods in java.util with parameters of type BitSet
 void BitSet.andNot(BitSet set)
          Clears all of the bits in this BitSet whose corresponding bit is set in the specified BitSet.
 void BitSet.and(BitSet set)
          Performs a logical AND of this target bit set with the argument bit set.
 void BitSet.or(BitSet set)
          Performs a logical OR of this bit set with the bit set argument.
 void BitSet.xor(BitSet set)
          Performs a logical XOR of this bit set with the bit set argument.