Uses of Class
org.apache.lucene.util.LongBitSet
Packages that use LongBitSet
Package
Description
Codecs API: API for customization of the encoding and structure of the index.
Support for index-time and query-time joins.
Some utility classes.
-
Uses of LongBitSet in org.apache.lucene.codecs
Fields in org.apache.lucene.codecs declared as LongBitSetModifier and TypeFieldDescription(package private) final LongBitSetDocValuesConsumer.BitsFilteredTermsEnum.liveTermsConstructors in org.apache.lucene.codecs with parameters of type LongBitSetModifierConstructorDescription(package private)BitsFilteredTermsEnum(TermsEnum in, LongBitSet liveTerms) -
Uses of LongBitSet in org.apache.lucene.search.join
Fields in org.apache.lucene.search.join declared as LongBitSetModifier and TypeFieldDescription(package private) final LongBitSetGlobalOrdinalsCollector.collectedOrds(package private) final LongBitSetGlobalOrdinalsWithScoreCollector.collectedOrdsprivate final LongBitSetGlobalOrdinalsQuery.foundOrds(package private) final LongBitSetGlobalOrdinalsQuery.OrdinalMapScorer.foundOrds(package private) final LongBitSetGlobalOrdinalsQuery.SegmentOrdinalScorer.foundOrdsMethods in org.apache.lucene.search.join that return LongBitSetConstructors in org.apache.lucene.search.join with parameters of type LongBitSetModifierConstructorDescription(package private)GlobalOrdinalsQuery(LongBitSet foundOrds, String joinField, OrdinalMap globalOrds, Query toQuery, Query fromQuery, Object indexReaderContextId) OrdinalMapScorer(Weight weight, float score, LongBitSet foundOrds, SortedDocValues values, DocIdSetIterator approximationScorer, LongValues segmentOrdToGlobalOrdLookup) SegmentOrdinalScorer(Weight weight, float score, LongBitSet foundOrds, SortedDocValues values, DocIdSetIterator approximationScorer) -
Uses of LongBitSet in org.apache.lucene.util
Methods in org.apache.lucene.util that return LongBitSetModifier and TypeMethodDescriptionLongBitSet.clone()static LongBitSetLongBitSet.ensureCapacity(LongBitSet bits, long numBits) If the givenLongBitSetis large enough to holdnumBits+1, returns the given bits, otherwise returns a newLongBitSetwhich can hold the requested number of bits.Methods in org.apache.lucene.util with parameters of type LongBitSetModifier and TypeMethodDescriptionvoidLongBitSet.and(LongBitSet other) this = this AND othervoidLongBitSet.andNot(LongBitSet other) this = this AND NOT otherstatic LongBitSetLongBitSet.ensureCapacity(LongBitSet bits, long numBits) If the givenLongBitSetis large enough to holdnumBits+1, returns the given bits, otherwise returns a newLongBitSetwhich can hold the requested number of bits.booleanLongBitSet.intersects(LongBitSet other) returns true if the sets have any elements in commonvoidLongBitSet.or(LongBitSet other) this = this OR othervoidLongBitSet.xor(LongBitSet other) this = this XOR other