| Package | Description |
|---|---|
| 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.
|
| Modifier and Type | Method and Description |
|---|---|
BitSet |
BitSet.get(int fromIndex, int toIndex)
Returns a new
BitSet composed of bits from this
BitSet from
fromIndex (inclusive) to
toIndex (exclusive).
|
static BitSet |
BitSet.valueOf(byte[] bytes)
Returns a new bit set containing all the bits in the given byte array.
|
static BitSet |
BitSet.valueOf(ByteBuffer
Returns a new bit set containing all the bits in the given byte buffer between its position and limit.
|
static BitSet |
BitSet.valueOf(long[] longs)
Returns a new bit set containing all the bits in the given long array.
|
static BitSet |
BitSet.valueOf(LongBuffer
Returns a new bit set containing all the bits in the given long buffer between its position and limit.
|
| Modifier and Type | Method and Description |
|---|---|
void |
BitSet.and(BitSet
Performs a logical
AND of this target bit set with the argument bit set.
|
void |
BitSet.andNot(BitSet
Clears all of the bits in this
BitSet whose corresponding bit is set in the specified
BitSet.
|
boolean |
BitSet.intersects(BitSet
Returns true if the specified
BitSet has any bits set to
true that are also set to
true in this
BitSet.
|
void |
BitSet.or(BitSet
Performs a logical
OR of this bit set with the bit set argument.
|
void |
BitSet.xor(BitSet
Performs a logical
XOR of this bit set with the bit set argument.
|
| Modifier and Type | Field and Description |
|---|---|
BitSet |
Element.exclusions
|
BitSet |
Element.inclusions
|
| Modifier and Type | Method and Description |
|---|---|
Element |
DTD.defineElement(String
Returns the
Element which matches the specified parameters.
|