| 
 | JavaTM 2 Platform Standard Ed. 5.0 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use BitSet | |
|---|---|
| java.util | Contains the collections framework, legacy collection classes, event model, date and time facilities, internationalization, and miscellaneous utility classes (a string tokenizer, a random-number generator, and a bit array). | 
| javax.swing.text.html.parser | Provides the default HTML parser, along with support classes. | 
| Uses of BitSet in java.util | 
|---|
| Methods in java.util that return BitSet | |
|---|---|
|  BitSet | BitSet.get(int fromIndex,
    int toIndex)Returns a new BitSet composed of bits from this BitSet from fromIndex(inclusive) to toIndex(exclusive). | 
| Methods in java.util with parameters of type BitSet | |
|---|---|
|  void | BitSet.and(BitSet set)Performs a logical AND of this target bit set with the argument bit set. | 
|  void | BitSet.andNot(BitSet set)Clears all of the bits in this BitSetwhose corresponding
 bit is set in the specifiedBitSet. | 
|  boolean | BitSet.intersects(BitSet set)Returns true if the specified BitSethas any bits set totruethat are also set totruein thisBitSet. | 
|  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. | 
| Uses of BitSet in javax.swing.text.html.parser | 
|---|
| Fields in javax.swing.text.html.parser declared as BitSet | |
|---|---|
|  BitSet | Element.exclusions | 
|  BitSet | Element.inclusions | 
| Methods in javax.swing.text.html.parser with parameters of type BitSet | |
|---|---|
|  Element | DTD.defineElement(String name,
              int type,
              boolean omitStart,
              boolean omitEnd,
              ContentModel content,
              BitSet exclusions,
              BitSet inclusions,
              AttributeList atts)Returns the Elementwhich matches the
 specified parameters. | 
| 
 | JavaTM 2 Platform Standard Ed. 5.0 | |||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
Copyright 2004 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.