Uses of Class
java.util.BitSet
Packages that useBitSet Package Description java.util Contains the collections framework, some internationalization support classes, a service loader, properties, random number generation, string parsing and scanning classes, base64 encoding and decoding, a bit array, and several miscellaneous utility classes.javax.swing.text.html.parser Provides the default HTML parser, along with support classes.Uses ofBitSet injava.util
Methods injava.util that returnBitSet Modifier and Type Method Description BitSetBitSet. get(int fromIndex, int toIndex)Returns a newBitSetcomposed of bits from thisBitSetfromfromIndex(inclusive) totoIndex(exclusive).staticBitSetBitSet. valueOf(byte[] bytes)Returns a new bit set containing all the bits in the given byte array.staticBitSetBitSet. valueOf(long[] longs)Returns a new bit set containing all the bits in the given long array.staticBitSetBitSet. valueOf(ByteBuffer bb)Returns a new bit set containing all the bits in the given byte buffer between its position and limit.staticBitSetBitSet. valueOf(LongBuffer lb)Returns a new bit set containing all the bits in the given long buffer between its position and limit.Methods injava.util with parameters of typeBitSet Modifier and Type Method Description voidBitSet. and(BitSet set)Performs a logicalAND of this target bit set with the argument bit set.voidBitSet. andNot(BitSet set)Clears all of the bits in thisBitSetwhose corresponding bit is set in the specifiedBitSet.booleanBitSet. intersects(BitSet set)Returns true if the specifiedBitSethas any bits set totruethat are also set totruein thisBitSet.voidBitSet. or(BitSet set)Performs a logicalOR of this bit set with the bit set argument.voidBitSet. xor(BitSet set)Performs a logicalXOR of this bit set with the bit set argument.Uses ofBitSet injavax.swing.text.html.parser
Fields injavax.swing.text.html.parser declared asBitSet Modifier and Type Field Description BitSetElement. exclusionsThe set of elements that must not occur inside the elementBitSetElement. inclusionsThe set of elements that can occur inside the elementMethods injavax.swing.text.html.parser with parameters of typeBitSet Modifier and Type Method Description ElementDTD. defineElement(String name, int type, boolean omitStart, boolean omitEnd,ContentModel content,BitSet exclusions,BitSet inclusions,AttributeList atts)Returns theElementwhich matches the specified parameters.