Uses of Class
org.apache.lucene.util.BitSet
-
Packages that use BitSet Package Description org.apache.lucene.util Some utility classes.org.apache.lucene.util.hnsw Navigable Small-World graph, nominally Hierarchical but currently only has a single layer. -
-
Uses of BitSet in org.apache.lucene.util
Subclasses of BitSet in org.apache.lucene.util Modifier and Type Class Description classFixedBitSetBitSet of fixed length (numBits), backed by accessible (FixedBitSet.getBits()) long[], accessed with an int index, implementingBitsandDocIdSet.classSparseFixedBitSetA bit set that only stores longs that have at least one bit which is set.Methods in org.apache.lucene.util that return BitSet Modifier and Type Method Description BitSetBitDocIdSet. bits()BitSetBitSetIterator. getBitSet()Return the wrappedBitSet.static BitSetBitSet. of(DocIdSetIterator it, int maxDoc)Build aBitSetfrom the content of the providedDocIdSetIterator.Constructors in org.apache.lucene.util with parameters of type BitSet Constructor Description BitDocIdSet(BitSet set)Same asBitDocIdSet(BitSet, long)but uses the set'sapproximate cardinalityas a cost.BitDocIdSet(BitSet set, long cost)BitSetIterator(BitSet bits, long cost)Sole constructor. -
Uses of BitSet in org.apache.lucene.util.hnsw
Constructors in org.apache.lucene.util.hnsw with parameters of type BitSet Constructor Description HnswGraphSearcher(VectorEncoding vectorEncoding, VectorSimilarityFunction similarityFunction, NeighborQueue candidates, BitSet visited)Creates a new graph searcher.
-