Uses of Class
org.apache.lucene.util.BitSet
Packages that use BitSet
-
Uses of BitSet in org.apache.lucene.util
Subclasses of BitSet in org.apache.lucene.utilModifier and TypeClassDescriptionfinal class
BitSet of fixed length (numBits), backed by accessible (FixedBitSet.getBits()
) long[], accessed with an int index, implementingBits
andDocIdSet
.class
A bit set that only stores longs that have at least one bit which is set.Methods in org.apache.lucene.util that return BitSetModifier and TypeMethodDescriptionBitDocIdSet.bits()
BitSetIterator.getBitSet()
Return the wrappedBitSet
.static BitSet
BitSet.of
(DocIdSetIterator it, int maxDoc) Build aBitSet
from the content of the providedDocIdSetIterator
.Constructors in org.apache.lucene.util with parameters of type BitSetModifierConstructorDescriptionBitDocIdSet
(BitSet set) Same asBitDocIdSet(BitSet, long)
but uses the set'sapproximate cardinality
as a cost.BitDocIdSet
(BitSet set, long cost) BitSetIterator
(BitSet bits, long cost) Sole constructor.