Uses of Class
org.apache.lucene.util.FixedBitSet
-
Packages that use FixedBitSet Package Description org.apache.lucene.facet.search Faceted Search APIorg.apache.lucene.search.grouping This module enables search result grouping with Lucene, where hits with the same value in the specified single-valued group field are grouped together.org.apache.lucene.util Some utility classes. -
-
Uses of FixedBitSet in org.apache.lucene.facet.search
Fields in org.apache.lucene.facet.search declared as FixedBitSet Modifier and Type Field Description protected FixedBitSet
ScoredDocIdCollector. docIds
-
Uses of FixedBitSet in org.apache.lucene.search.grouping
Methods in org.apache.lucene.search.grouping that return FixedBitSet Modifier and Type Method Description FixedBitSet
AbstractAllGroupHeadsCollector. retrieveGroupHeads(int maxDoc)
-
Uses of FixedBitSet in org.apache.lucene.util
Methods in org.apache.lucene.util with parameters of type FixedBitSet Modifier and Type Method Description void
FixedBitSet. and(FixedBitSet other)
this = this AND othervoid
FixedBitSet. andNot(FixedBitSet other)
this = this AND NOT othervoid
FixedBitSet. or(FixedBitSet other)
this = this OR otherConstructors in org.apache.lucene.util with parameters of type FixedBitSet Constructor Description FixedBitSet(FixedBitSet other)
Makes full copy.
-